debian 9安装nodejs和npm
在github上找了个socks5的代理,但他这个要npm才能安装,要nodejs才能使用,项目地址是https://github.com/Srar/telegram-socks5-proxy,下面来说说怎么在debian 9上安装nodejs和npm.
系统:debian 9
1.添加Node.js PPA
最新版安装命令:
apt-get install curl python-software-properties curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
安装LTS长期维护版:
apt-get install curl python-software-properties curl -sL https://deb.nodesource.com/setup_8.x | bash -
2.安装Node.js和NPM
apt-get install nodejs
3.检查Node.js和NPM版本
node -v
v8.16.0
npm -v
6.4.1
如果有版本号输出就证明安装成功了.
评论: