Web3安装爬坑

在macbook配置web3模块时,出现了如下类似的问题,主要原因为用户权限问题sudo以及npm配置问题,通过添加--unsafe-perm 限制UID于GID自动切换,保证用户执行管理员账户权限。

【引用原文】

gyp ERR! configure error 

gyp ERR! stack Error: EACCES: permission denied, mkdir '/Users/zhang/Documents/data_insight_yinzhou/data_insight_yinzhou/node_modules/node-sass/build'

gyp ERR! System Darwin 17.6.0

gyp ERR! command "/usr/local/bin/node" "/Users/zhang/Documents/data_insight_yinzhou/data_insight_yinzhou/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="

gyp ERR! cwd /Users/zhang/Documents/data_insight_yinzhou/data_insight_yinzhou/node_modules/node-sass

gyp ERR! node -v v10.1.0

gyp ERR! node-gyp -v v3.6.2

gyp ERR! not ok 


 

查看资料发现,可能需要增加--unsafe-perm,即

sudo npm install --unsafe-perm -g web3

结果成功了

你可能感兴趣的:(区块链,mac,web)