1. 下载安装
https://nodejs.org/en/download/
(使用MSI文件安装,如果安装过程中报错找不到,是不是文件在U盘或虚拟磁盘上或权限不足)
通过YUM安装
root用户:
curl --silent --location https://rpm.nodesource.com/setup_10.x | bash -
yum install nodejs -y
非root用户:
curl --silent --location https://rpm.nodesource.com/setup_10.x | sudo bash -
yum install nodejs -y
2. 配置
(非MSI文件安装需自行配置PATH变量)
用户变量-PATH:【NPM文件路径】
系统变量-PATH:【NodeJS的安装路径】
npm config set prefix "路径\node_global"
npm config set cache "路径\node_cache"
查看用户环境变量PATH中的NPM路径,将该路径改为【路径\node_global】(如果报错找不到npm,将原路径下的文件复制到【路径\node_global】)
新增系统变量NODE_PATH:【路径\node_global\node_modules】
npm install npm -g
npm install cnpm -g
npm install express -g
npm install windows-build-tools -g
(如需自定义【Python】安装,请先安装【Python】,再行安装【windows-build-tools】)
网友评论