1、网站
https://remix.ethereum.org
2、安装
cd remix-ide
npm installremix-ide -g
remix-ide
3、问题1
ERR! stack Error: Can't find Python executable "python",
解决方案:安装Python2.7.15版本,并配置环境变量
4、问题2
MSBUILD : error MSB3428: 未能加载 Visual C++ 组件“VCBuild.exe”。要解决此问题,1) 安装 .NET Framework 2.0 SDK;2) 安装 Microsoft Visual Studio 2005;或 3) 如果将该组件安装到了其他位置,请将其位置添加到系统路径中。[G:\blockchain\remix-ide\node_modules\scrypt\build\binding.sln]
解决方案:
npm install --global --productionwindows-build-tools;
执行npm rebuild node-sass 重构一下 ;
网友评论