0
4

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 3 years have passed since last update.

Ubuntu-20.04 に nodenv をインストール (Homebrew より)

Last updated at Posted at 2020-10-04

概要

Ubuntu-20.04 で Homebrew から nodenv を使えるようにします。

手順

Homebrew Documentation - Homebrew on Linux を参考に進めます。

1. build-essential をインストール

Ubuntu に下記コマンドを入力して build-essential をインストールする。

$ sudo apt-get install build-essential curl file git

参考:Debian or Ubuntu

2. Homebrew をインストール

$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

参考:Homebrew

3. PATH を設定

下記コマンドを順に実行して ~/.profile に PATH を設定する。

$ test -d ~/.linuxbrew && eval $(~/.linuxbrew/bin/brew shellenv)
$ test -d /home/linuxbrew/.linuxbrew && eval (/home/linuxbrew/.linuxbrew/bin/brew shellenv)
$ test -r ~/.bash_profile && echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.bash_profile
$ echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.profile

参考:install
How to install Homebrew on Ubuntu 20.04 / 18.04 / Debian 10?

4. Homebrew が入ったことを確認

下記コマンドを実行する。

$ brew --version

下記のようにバージョン情報が出れば、Homebrew は無事インストールできている。

Homebrew 2.5.2

5. nodenv をインストール

下記コマンドで brew で nodenv をインストールする。

$ brew install nodenv

6. シェルに nodenv を設定

好きなエディタで ~/.profile を開き、下記の 1 行を最終行に追加する。

eval "$(nodenv init -)"

参考:Groom your app’s Node environment with nodenv. - Installation

7. nodenv がコマンドになったことを確認

下記コマンドを実行する。

$ nodenv --version

下記のようにバージョン情報が出れば、nodenv は無事インストールできている。

nodenv 1.4.0
0
4
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
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?