truffle使用

Truffle命令使用可参考这里:
以太坊Solidity编程语言开发框架————16、Truffle命令指南

1.如果电脑需要走代理,那么truffle init出现如下错误:

D:\gopath\simple-storage>truffle initDownloading…Error: Truffle Box
at URL https://github.com/truffle-box/bare-box.git doesn’t exist. If
you believe this is an error, please contact Truffle support.

解决方法可以是直接git代码取代truffle init命令
git clone https://github.com/truffle-box/bare-box
后续的命令需要先执行:cd bare-box

以上两条命令的功能就相当于truffle init,自动生成好了框架。

你可能感兴趣的:(BUG调试)