typora/note/前端/vue3/nvm.md
2024-12-12 10:48:55 +08:00

28 lines
565 B
Markdown

### NVM安装
- [github](https://github.com/nvm-sh/nvm#installing-and-updating)
```bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
# or
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
```
### NVM安装后命令
```bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
```
### NVM 安装node
```bash
nvm install 16.13.0
nvm use 16.13.0
```