nodejs命令行升级

安装全局n模块:

C:\Users\Administrator>npm install -g n
npm ERR! code EBADPLATFORM
npm ERR! notsup Unsupported platform for [email protected]: 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:\Program Files\nodejs\node_cache_logs\2017-05-02T02_08_33_861Z-d
ebug.log

报错哦,那执行下面的命令:

C:\Users\Administrator>npm install -g n --force
npm WARN using --force I sure hope you know what you are doing.
C:\Program Files\nodejs\node_global\n -> C:\Program Files\nodejs\node_global\nod
e_modules\n\bin\n
C:\Program Files\nodejs\node_global
`-- [email protected]

4、升级NodeJs到最新版本:

升级到最新稳定版本:

n stable

升级到最新版本:

n latest

升级到指定版本:

n 0.10.26

作者:doitplayer
来源:CSDN
原文:https://blog.csdn.net/DoitPlayer/article/details/71077333
版权声明:本文为博主原创文章,转载请附上博文链接!

你可能感兴趣的:(nodejs命令行升级)