web-dev-qa-db-ja.com

Ubuntu 14.04に最新のNodeJSバージョンをインストールできない

私のサーバーには0.10.25があります。「Reaのバージョンは不要です。これはnodejsのLTSである "0.10.30"です。 0.12 it nodejsが他のいくつかのパッケージとマージされていることがわかりました。

0.12のパッケージソースはありません。nodejsのWebサイトから.tar.gzファイルをダウンロードし、解凍しましたが、インストールスクリプトは含まれていません。手動でファイルを移動したり、リンクを作成したりすることは望みません、 私に何ができる?

更新:

[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]~> 
11
Edik Mkoyan

NodeJSをインストールする最も簡単な方法は、公式PPA(最新バージョン(この編集時の8.X)を含む)を使用することです。

ターミナルを開きます(Ctrl+Alt+T)および実行:

  1. 現在のNodeJSインストールを削除する

    Sudo apt-get purge nodejs*
    
  2. インストールcurl

    Sudo apt-get install curl
    
  3. NodeJSをインストールします。

    curl -sL https://deb.nodesource.com/setup_8.x | Sudo -E bash -
    Sudo apt-get install -y nodejs
    

4.1.1バージョンではなく0.12が絶対に必要な場合は、次を実行します。

  1. NodeJSをインストールします。

    curl -sL https://deb.nodesource.com/setup_0.12 | Sudo bash -
    Sudo apt-get install -y nodejs
    
13
hg8