Node.js 安装
推荐使用 nvm 安装管理 node.js
the nvm method is definitely much more flexible.
creationix/nvm: Node Version Manager - Simple bash script to manage multiple active node.js versions
To install or update nvm.
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash |
# Uses automatic LTS (long-term support) alias `lts/*`, if available. |
nrm 源管理
nrm can help you easy and fast switch between different npm registries.
npm install -g nrm |
node-sass sh: node: command not found
解决办法:
npm install --unsafe-perm node-sass |
npm
出于安全考虑不支持以 root
用户运行,即使你用 root
用户身份运行了,npm 会自动转成一个叫 nobody
的用户来运行,而这个用户几乎没有任何权限。这样的话如果你脚本里有一些需要权限的操作,比如写文件(尤其是写 /root/.node-gyp),就会报错了。
为了避免这种情况,要么按照 npm 的规矩来,专门建一个用于运行 npm 的高权限用户。要么加 --unsafe-perm
参数,这样就不会切换到 nobody
上,运行时是哪个用户就是哪个用户,即使是 root
。
再或尝试:
npm rebuild node-sass |
version “N/A -> N/A” is not yet installed
出现了这个报错提示:
N/A: version "N/A -> N/A" is not yet installed. |
List installed versions
nvm ls |
Try nvm install in that directory to ensure it’s installed.
nvm install --lts |
References
- How To Install Node.js on Ubuntu 16.04 | DigitalOcean
- nvm node is recognised by npm install script. | GitHub
- npm 的 –unsafe-perm 参数是有何作用呢?| segmentfault
– EOF –