我是Node的新手。因此,我这样安装了Web3:
[JsonConverter(typeof(VerbatimDictionaryConverter<string, string>))]
public IDictionary<string, string> CustomAttributes { get; set; }
成功。然后,我运行node并尝试要求使用web3。它不起作用:
npm install -g web3
任何想法,我可能都缺少明显的东西。
答案 0 :(得分:1)
使用-g
进行全局安装时,似乎web3出现问题。
我建议您将npm init
交给您的项目(如果尚未提供),并仅为正在运行的项目安装它:
npm install web3
在项目文件夹中。