通过从github的方式将npm安装到nodejs\node_modules
git clone --recursive git://github.com/isaacs/npm.git
下载完成后,打开nodejs命令行窗口,进入到npm的代码文件夹下,使用下边命令安装
node cli.js install npm -gf
其中-gf是指全局安装的意思,你可以不要,这样会安装在当前文件夹下,当前工程下而已。
npm -v查看npm安装版本
时间: 2024-10-27 12:02:38