0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CentOS 7 にyumでNode.js 4.x をインストールする

Last updated at Posted at 2017-01-26

##リポジトリの追加
sudo curl -sL https://rpm.nodesource.com/setup_4.x | bash -
setup_4.xの部分をsetup_5.x setup_6.x setup_7.x のいずれかにして実行すると、それぞれのバージョンに対応したものが追加されます。

必要なライブラリのインストール

sudo yum install -y gcc-c++ make
これは既にインストールされていれば不要です。

Node.js 4.xのインストール

sudo yum -y install --disablerepo="epel" nodejs
epelリポジトリを有効にしている場合はそちらが優先されて、常に6.xがインストールされてしまうようです。
--disablerepo="epel"をオプションに指定して無効化するとうまくいきます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?