banner
李大仁博客

李大仁博客

天地虽大,但有一念向善,心存良知,虽凡夫俗子,皆可为圣贤。

npm中Error: could not get uid/gid问题的解决方法

在 Docker 中运行 npm 出现 Error: could not get uid/gid 的问题

但是通过设置 `unsafe-perm true` 可以解决这个问题,不可思议。

npm config set unsafe-perm true

其他可以用的 npm 配置 # 关闭安全证书检查

npm config set unsafe-perm true

# 关闭强制 SSL

npm config set strict-ssl false

# 更改 npm 源

npm config set registry https://registry.npm.taobao.org

#设置代理

# socks5 proxy
npm config set proxy http://xx@xx.com:xxxx

http proxy#

npm config set https-proxy=http://xx@xx.com:xxxx

参考 http://www.cnblogs.com/liyongjian5179/p/9884944.html

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.