欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 健康 > 养生 > 【Ubuntu 24.04】How to Install and Use NVM

【Ubuntu 24.04】How to Install and Use NVM

2024/12/1 9:00:16 来源:https://blog.csdn.net/commshare/article/details/144080843  浏览:    关键词:【Ubuntu 24.04】How to Install and Use NVM

  • 参考

下载

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash

在这里插入图片描述

激活

  • Activate NVM: Once the installation script completes, you need to either close and reopen the terminal or run the following command to use nvm immediately.

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"

在这里插入图片描述

Step 2: Installing Node.js using NVM

After installing NVM, you can install Node.js. NVM makes it easy to install any version of Node.js. To install the latest version, use:

  • 最新版本:

nvm install node
  • 安装指定版本:
To install a specific version of Node.js, you can do so by specifying the version number, for example:

直接use不行,得先install 才能use

在这里插入图片描述


root@k8s-master-pfsrv:/home/zhangbin/perfwork/01_ai/01_semantic-text2image-search/frontend# nvm install 21.5.0
Downloading and installing node v21.5.0...
Downloading https://nodejs.org/dist/v21.5.0/node-v21.5.0-linux-x64.tar.xz...
######################################################################## 100.0%
Computing checksum with sha256sum
Checksums matched!
Now using node v21.5.0 (npm v10.2.4)
Creating default alias: default -> 21.5.0 (-> v21.5.0)
root@k8s-master-pfsr

在这里插入图片描述

Step 4: Setting a Default Node.js Version

  • To avoid having to manually switch versions every time you open a new terminal, you can set a default Node.js version with NVM:

nvm alias default <version_number>

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com