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.

raspiに新しいnode.jsを入れた

Posted at

参考サイトに感謝
http://make.kosakalab.com/make/electronic-work/nodejs_raspi/

参考サイトどおりに実行。
現在の最新版はv6.3.0でした。僕はこれをインストールしました。

1)まずは、デフォルトで入ってる古いバージョンをアンインストール。

sudo apt-get autoremove nodejs

2)そして新しいnodejsのインストール

sudo mkdir /usr/local/nvm
sudo chmod 777 /usr/local/nvm
git clone https://github.com/creationix/nvm.git /usr/local/nvm
source /usr/local/nvm/nvm.sh
nvm ls-remote
nvm install v6.3.0

3) /etc/profile.d/nvm.sh の設定

sudo nano /etc/profile.d/nvm.sh などで、次の行を追加

source /usr/local/nvm/nvm.sh

4)sudo visudo の設定

次の行をコメントアウト

 #Defaults secure_path = /sbin:/bin:/usr/sbin:/usr/bin

次の行を追加

 Defaults env_keep += "PATH"

以上かな。


その他)

現在のnodejsのバージョンを調べる

node -v

最新版のnodejsの調べ方は

nvm ls-remote

0
0
2

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?