Debian 11

apt安装

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 安装Node.js和npm
sudo apt install nodejs npm -y

// 安装Yarn
sudo npm install -g yarn

// 卸载
sudo npm -g uninstall yarn
sudo apt remove npm nodejs

// 验证版本
node -v
npm -v
yarn -v

NodeSource安装

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 卸载旧版本
sudo apt purge nodejs
sudo apt autoremove

// 安装Nodejs
sudo apt update
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt install nodejs build-essential -y

// 安装npm和yarn
sudo corepack enable npm
sudo corepack enable yarn

// 更改权限
sudo chown agedcat:agedcat /usr/bin/yarn
sudo chown agedcat:agedcat /usr/bin/yarnpkg

// 验证版本
node -v
npm -v
yarn -v

查看 官网确定下载版本并且替换版本号。