我之前安装sudo apt-get install node总是不成功,然后在sf上看到是因为ubuntu系统里有一个node的文件夹,所以没成功?忘了是咋说的了
然后我就按照他的方法这样安装,sudo apt-get install nodejs
使用node的时候就用nodejs去命令
现在问题来了,我要安装typescript,但是要先安装npm,可是我在终端输入npm -v没反应,我猜是和之前安装node没成功一样的原因
那现在我应该怎么安装呀?
我之前安装sudo apt-get install node总是不成功,然后在sf上看到是因为ubuntu系统里有一个node的文件夹,所以没成功?忘了是咋说的了
然后我就按照他的方法这样安装,sudo apt-get install nodejs
使用node的时候就用nodejs去命令
现在问题来了,我要安装typescript,但是要先安装npm,可是我在终端输入npm -v没反应,我猜是和之前安装node没成功一样的原因
那现在我应该怎么安装呀?
Debian and Ubuntu based Linux distributions
Also including: Linux Mint, Linux Mint Debian Edition (LMDE), elementaryOS and others.
Node.js is available from the NodeSource Debian and Ubuntu binary distributions repository (formerly Chris Lea's Launchpad PPA). Support for this repository, along with its scripts, can be found on GitHub at nodesource/distributions.
NOTE: If you are using Ubuntu Precise or Debian Wheezy, you might want to read about running Node.js >= 4.x on older distros.
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install -y nodejs
Alternatively, for Node.js v5:
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
sudo apt-get install -y nodejs
Optional: install build tools
To compile and install native addons from npm you may also need to install build tools:
sudo apt-get install -y build-essential
https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions
使用apt-get install node npm 版本比较低
建议去官网下载包安装
拉取wget //官网下载地址
解压 tar -xf //下载的那个包
赋权限 ./configure
安装 make && make install
8 回答4.8k 阅读✓ 已解决
6 回答3.5k 阅读✓ 已解决
5 回答2.9k 阅读✓ 已解决
5 回答6.4k 阅读✓ 已解决
4 回答2.3k 阅读✓ 已解决
4 回答2.8k 阅读✓ 已解决
3 回答2.5k 阅读✓ 已解决
推荐用nvm进行安装,还方便于版本管理
上github搜
nvm