当前位置: 首页>>技术问答>>正文


如何在Ubuntu上安装特定版本的Node?

, ,

问题描述

我想在Ubuntu 12.04上安装NodeJS版本0.8.18。我尝试安装最新版本,然后使用nvm恢复到0.8.18,但是当我运行我的代码时,显然安装的软件包和两个版本(最新版本和0.8.18)存在一些问题。由于我不知道如何解决这个问题,我从Node安装中清理了机器,并考虑直接安装我感兴趣的版本(v0.8.18)。

最佳解决办法

Chris Lea的ppa回购中有0.8.23。

该软件包允许您向apt-get添加存储库:(您也可以手动执行此操作)

sudo apt-get install software-properties-common

添加Chris Lea的存储库:

sudo apt-add-repository ppa:chris-lea/node.js-legacy

更新apt-get:

sudo apt-get update

安装Node.js:

sudo apt-get install nodejs=0.8.23-1chl1~precise1

如果您只添加node.js-legacy,我认为(随意编辑)版本号是可选的。如果同时添加legacy和ppa /chris-lea /node.js,则很可能需要添加该版本。

次佳解决办法

可以使用dpkg从nodejs官方分发安装特定版本的nodejs。

例如,目前最新的4.x版本是4.2.4,但您可以安装以前的4.2.3版本。

curl -s -O https://deb.nodesource.com/node_4.x/pool/main/n/nodejs/nodejs_4.2.3-1nodesource1~trusty1_amd64.deb
sudo apt-get install rlwrap
sudo dpkg -i nodejs_4.2.3-1nodesource1~trusty1_amd64.deb

第三种解决办法

n模块为我工作。

运行此代码以清除npm的缓存,安装n,并安装最新的稳定版Node:

sudo npm cache clean -f
sudo npm install -g n
sudo n stable

参见:http://www.hostingadvice.com/how-to/update-node-js-latest-version/和:https://www.npmjs.com/package/n

要安装特定版本的节点:

sudo n 6.11.2

要查看哪个版本:

node -v

您可能需要重新启动

第四种办法

试试这种方式。这对我有用。

  1. wget nodejs.org/dist/v0.10.36/node-v0.10.36-linux-x64.tar.gz(download file)

  2. 转到下载Node.js二进制文件的目录,然后运行命令即sudo tar -C /usr /local –strip-components 1 -xzf node-v0.10.36-linux-x64.tar.gz以安装Node.js二进制文件包装在“/usr/local/”中。

  3. 你可以查一下: –

    $ node -v
     v0.10.36 
    $ npm -v
     1.4.28
    

第五种办法

NVM(节点版本管理器)

在Ubuntu 17.10中测试过:

curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | sh
source ~/.nvm/nvm.sh
nvm install 0.9.0
nvm install 0.9.9
nvm use 0.9.0
node --version
#v0.9.0
nvm use 0.9.9
node --version
#v0.9.9

对于最新的长期支持版本的特定情况(如果您可以选择,建议使用):

nvm install --lts
nvm use --lts
npm --version
npm install --global vaca
vaca

由于必须为每个新shell完成采购,您可能需要将以下内容添加到.bashrc

f="$HOME/.nvm/nvm.sh"
if [ -r "$f" ]; then
  . "$f" &>'/dev/null'
  nvm use --lts &>'/dev/null'
fi

好处:

  • 允许您使用多个版本的Node并且不使用sudo

  • 类似于Ruby RVM和Python Virtualenv,被广泛认为是Ruby和Python社区的最佳实践

  • 尽可能下载pre-compiled二进制文件,如果没有,则下载源代码并为您编译一个

第六种办法

版本0.10也适用于此ppa

apt-add-repository ppa:chris-lea/node.js

安装nodejs:

apt-get install nodejs=0.10.25-1chl1~precise1

感谢我的朋友Julian Xhokaxhiu

第七种办法

NOTE: you can use NVM software to do this in a more nodejs fashionway. However i got issues in one machine that didn’t let me use NVM. So i have to look for an alternative 😉

您可以手动下载和安装。

转到nodejs>下载>其他版本http://nodejs.org/dist/

选择您要查找的版本http://nodejs.org/dist/v0.8.18/

选择与您的环境相对应的发行文件并下载(照顾32位/64位版本)。示例:http://nodejs.org/dist/v0.8.18/node-v0.8.18-linux-x64.tar.gz

提取文件并按照README.md上的说明操作:

To build:

Prerequisites (Unix only):

* Python 2.6 or 2.7 * GNU Make 3.81 or newer * libexecinfo (FreeBSD and OpenBSD only) 

Unix/Macintosh:

./configure make make install 

If your python binary is in a non-standard location or has a non-standard name, run the following instead:

export PYTHON=/path/to/python $PYTHON ./configure make make install 

Windows:

vcbuild.bat 

To run the tests:

Unix/Macintosh:

make test 

Windows:

vcbuild.bat test 

To build the documentation:

make doc 

To read the documentation:

man doc/node.1 

也许你想(必须)将文件夹移动到更合适的位置,如/usr/lib/nodejs/node-v0.8.18/,然后在/usr /bin上创建一个Symbolic Lynk,以便从任何地方访问您的安装。

sudo mv /extracted/folder/node-v0.8.18 /usr/lib/nodejs/node-v0.8.18
sudo ln -s /usr/lib/nodejs/node-v0.8.18/bin/node /usr/bin/node

如果你想在同一台机器上使用不同的版本,你可以使用debian替代品。按照之前发布的相同方式继续下载第二个版本。例如最新版本。

http://nodejs.org/dist/latest/ – > http://nodejs.org/dist/latest/node-v0.10.28-linux-x64.tar.gz

移动到您最喜欢的目的地,与您要安装的其余版本相同。

sudo mv /extracted/folder/node-v0.10.28 /usr/lib/nodejs/node-v0.10.28

按照README.md文件的说明进行操作。然后更新备选方案,对于每个版本,您都有下载安装替代方案。

sudo update-alternatives    --install genname symlink  altern  priority  [--slave  genname  symlink altern]
          Add a group of alternatives  to  the  system.   genname  is  the
          generic  name  for  the  master link, symlink is the name of its
          symlink  in  the  alternatives  directory,  and  altern  is  the
          alternative being introduced for the master link.  The arguments
          after  --slave  are  the  generic  name,  symlink  name  in  the
          alternatives  directory  and alternative for a slave link.  Zero
          or more --slave options, each followed by three  arguments,  may
          be specified.

          If   the   master   symlink  specified  exists  already  in  the
          alternatives system’s records, the information supplied will  be
          added  as a new set of alternatives for the group.  Otherwise, a
          new group, set to  automatic  mode,  will  be  added  with  this
          information.   If  the group is in automatic mode, and the newly
          added alternatives’ priority is higher than any other  installed
          alternatives  for  this  group,  the symlinks will be updated to
          point to the newly added alternatives.

例如:

sudo update-alternatives --install /usr/bin/node node /usr/lib/nodejs/node-v0.10.28 0 --slave /usr/share/man/man1/node.1.gz node.1.gz /usr/lib/nodejs/node-v0.10.28/share/man/man1/node.1

然后,您可以使用update-alternatives --config node在机器中安装的任意数量的版本中进行选择。

第八种办法

仅供参考,Chris Lea的回购可用版本目前为0.8.25

sudo apt-get install nodejs=0.8.25-2chl1~raring1

第九种办法

根据nodejs github repo的wiki中的this page,其中,Chris Lea的PPA(在其他几个答案中提到)已被NodeSource发行版取代,作为在Ubuntu中从源安装nodejs的主要方式:

curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get install -y nodejs

这支持最新的三个(在撰写本文时)UTSntu的LTS版本:10.04(清晰),12.04 LTS(精确)和14.04(可靠)。

我不确定这会有助于安装旧版本的nodejs,但我会把它放在这里,以防其他人需要安装未包含在他们的发行版存储库中的特定(较新)版本的nodejs。

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/6837.html,未经允许,请勿转载。