以太坊(二)安装Solidity编译器

官方地址:https://solidity.readthedocs.io/en/develop/installing-solidity.html

推荐使用  remix   快速学习solidity  。

remix  在线访问地址 :https://remix.ethereum.org/

git地址:https://github.com/ethereum/remix-ide

安装:

安装npmnode.js(请参阅https://docs.npmjs.com/getting-started/installing-node),然后执行:

Remix-ide已经作为npm模块发布:

npm install remix-ide -g 
remix-ide

或者,如果您想克隆github存储库(wget需要先安装):

git clone https://github.com/ethereum/remix-ide.git
 cd remix-ide 
npm install 
npm run setupremix   这会为你克隆https://github.com/ethereum/remix并将它链接到remix-ide 
npm start

猜你喜欢

转载自www.cnblogs.com/liuq1991/p/9082108.html