0
0

More than 1 year has passed since last update.

Node.jsのバージョンを下げる方法

Posted at

結論

以下を実行。
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash

~/.bash_profile, ~/.zshrc, ~/.profile, or ~/.bashrcなどのファイルに以下を書き込む。

export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm

Node.jsで使用したいバージョンをインストールする。

nvm install 16

参考サイト

nvm で複数の Node.js バージョンを切り替えて使用する (Node Version Manager)

最新バージョンのnvmをインストールするならこちら↓
Github

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