私のサーバーには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]~>
NodeJSをインストールする最も簡単な方法は、公式PPA(最新バージョン(この編集時の8.X)を含む)を使用することです。
ターミナルを開きます(Ctrl+Alt+T)および実行:
現在のNodeJSインストールを削除する
Sudo apt-get purge nodejs*
インストールcurl
Sudo apt-get install curl
NodeJSをインストールします。
curl -sL https://deb.nodesource.com/setup_8.x | Sudo -E bash -
Sudo apt-get install -y nodejs
4.1.1バージョンではなく0.12が絶対に必要な場合は、次を実行します。
NodeJSをインストールします。
curl -sL https://deb.nodesource.com/setup_0.12 | Sudo bash -
Sudo apt-get install -y nodejs