说明:刚刚在TeleShellBot:通过Telegram机器人远程执行shell命令这个教程里谈到了npm
命令,所以就说下。按照官方(www.npmjs.com
)的说法,npm
与Node.js
一起存在,这意味着当您下载并安装Node.js
时,您会自动在计算机上安装npm
。所以这里我们只需要安装Node.js
即可。其实之前发过这样的教程,只是没有写Centos
系统,所以这里又拿出来说一次,包括Centos
系统,目前最新的Node.js
版本为10.x
这里说下安装方法。
安装
Node.js
官方GitHub
地址:https://github.com/nodesource/distributions
Ubuntu
系统
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs
Debian
系统
curl -sL https://deb.nodesource.com/setup_10.x | bash -
apt-get install -y nodejs
Centos
系统
curl -sL https://rpm.nodesource.com/setup_10.x | bash -
yum install nodejs -y
检查Node.js
和NPM
版本
node -v
npm -v
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/246555.html