Ubuntuにnodenvをインストールする方法を書き溜める
1 2 3 4 5 6 7 8 |
sudo apt-get install -y git make git clone https://github.com/nodenv/nodenv.git ~/.nodenv git clone https://github.com/nodenv/node-build.git $(nodenv root)/plugins/node-build export PATH="$HOME/.nodenv/bin:$PATH" >> ~/.bashrc eval "$(nodenv init -)" >> ~/.bashrc source ~/.bashrc nodenv install 17.4.0 nodenv shell 17.4.0 |
以上、
またね~・