在我的服务器上,我有0.10.25
“我不需要Rea的版本,即“ 0.10.30”,这是LTS的版本nodejs
,但是开发人员要求安装第4个版本,在挖掘了一点点之后,我发现0.12
它nodejs
与某些版本合并了其他套餐。
没有软件包的来源0.12
,我已经从.tar.gz
nodejs的网站下载了文件,没有包装,但是它不包含任何安装脚本,手动移动文件或创建链接不是我想要的方式,我该怎么办?
更新:
[web01]~> nodejs -v
v0.10.25
[web01]~> apt-get install curl
Reading package lists... Done
Building dependency tree
Reading state information... Done
curl is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
[web01]~> curl -sL https://deb.nodesource.com/setup_4.x | sudo bash -
[web01]~> apt-get install -y nodejs
Reading package lists... Done
Building dependency tree
Reading state information... Done
nodejs is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
[web01]~> uname -a
Linux web01.example.lab 3.19.0-28-generic #30~14.04.1-Ubuntu SMP Tue Sep 1 09:32:55 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
[web01]~>
3
安装最新的Node.js / MongoDB是否可能重复?有关安装node.js 0.12的说明,请参见用户的答案
—
。– karel