当前版本v14.15.2,升级到最新的v18.14.0,已经下载成功,但是node -v 显示还是14版本的。。。
步骤1、清除你的npm缓存 : npm cache clean -f
2、全局下载n,管理node版本,npm install -g n;(报错则试试:npm install -g n --force)
3、告诉助手(n)安装最新的稳定版Node:n stable。
4. 安装完成后如果node版本不是最新的则作如下。
显示copying:18.14.0
installed:18.14.0;
active:14.15.2
5. 在系统中更改n下载的node位置编辑环境配置文件:
将下面两行代码插入到文件末尾:
例如:
6. 保存后,source ~/.bash_profile
7. 重新安装node稳定版本:node stable;
8. 输入n并选择18.14.0版本;node -v 就是18.14.0版本了。
9、安装好node版本后,去下载对应npm版本。否则下载npm 到新版本,旧版本node不匹配会报错。
网友评论