ubuntu配置nodejs环境变量

在这里插入图片描述
进官网下载页面 右键 复制链接地址
cd /usr/local
wget https://nodejs.org/dist/v10.15.3/node-v10.15.3-linux-x64.tar.xz
xz -d node-v10.15.3-linux-x64.tar.xz
tar -xvf node-v10.15.3-linux-x64.tar
vim ~/.bash_profile 并填写 export PATH=$PATH:/usr/local/node-v10.15.3-linux-x64/bin
在这里插入图片描述
source ~/.bash_profile
node -v
npm -v

猜你喜欢

转载自blog.csdn.net/weixin_38678201/article/details/89954677