欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决 linux 下安装 node 报: command not found

程序员文章站 2022-05-09 13:53:55
...

1. 在 linux 下安装 node 提示 -bash:  node: command not found。

2. 这种情况可以用 epel 的来安装 node :

sudo yum install epel-release
sudo yum install nodejs
node --version
解决 linux 下安装 node 报: command not found
解决 linux 下安装 node 报: command not found

解决 linux 下安装 node 报: command not found

输出版本信息就证明装成功了。


3. 安装 npm 和 express
 sudo yum install npm --enablerepo=epel
 sudo npm install -g express
 sudo npm install -g express-generator
OK 。


参考:https://blog.csdn.net/u013708407/article/details/50239909