Windows 下使用命令行升级 Npm 和 NodeJS
最近还是打算好好搞下vue。
搞起很久之前装的 node.js 。肯定是要更新一下的。
首先使用命令查看当前安装的版本:
node -v
npm -version
升级 NPM:
npm install npm -g
升级完成后可以再次查看版本以确定升级成功。
安装全局 n 模块:
npm install -g n
执行之后出现报错
npm ERR! code EBADPLATFORM npm ERR! notsup Unsupported platform for n@6.4.0: wanted {"os":"!win32","arch":"any"} (current: {"os":"win32","arch":"x64"}) npm ERR! notsup Valid OS: !win32 npm ERR! notsup Valid Arch: any npm ERR! notsup Actual OS: win32 npm ERR! notsup Actual Arch: x64 npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\Administrator\AppData\Roaming\npm-cache\_logs\2020-04-08T03_59_18_138Z-debug.log
执行如下命令
npm install -g n --force
安装成功
然后升级node到最新版本
n stable
然后报错
'"bash"' 不是内部或外部命令,也不是可运行的程序或批处理文件。
百度得知可能是n里使用了linux的脚本,而windos自然没有。
最后。。。我重新下了个 node 安装包,覆盖安装了。。。。
泪眼凝噎。
这个故事告诉我们别老想着玩什么高大上的,安装就完事了。