1.下载Node.js

https://nodejs.org/en/download/
下载binary版本

2.配置环境变量

https://blog.csdn.net/duan9015/article/details/102531839

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 建议的配置方法
vim /etc/profile.d/nodejs.sh
添加如下内容:
#!/bin/sh
export PATH=/opt/node-v18.12.1-linux-x64/bin:$PATH

# 其它方法
update-alternatives --install /usr/bin/npm npm /opt/node-v18.12.1-linux-x64/bin/npm 1
update-alternatives --install /usr/bin/node node /opt/node-v18.12.1-linux-x64/bin/node 1
update-alternatives --install /usr/bin/npx npx /opt/node-v18.12.1-linux-x64/bin/npx 1
update-alternatives --install /usr/bin/corepack corepack /opt/node-v18.12.1-linux-x64/bin/corepack 1

# 删除环境变量
update-alternatives --remove node /opt/node-v18.12.1-linux-x64/bin/node
update-alternatives --remove npm /opt/node-v18.12.1-linux-x64/bin/npm
update-alternatives --remove npx /opt/node-v18.12.1-linux-x64/bin/npx
update-alternatives --remove corepack /opt/node-v18.12.1-linux-x64/bin/corepack

3.更改源

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
## 一、修改成腾讯云镜像源

1、命令

npm config set registry http://mirrors.cloud.tencent.com/npm/

2. 验证命令

npm config get registry

如果返回http://mirrors.cloud.tencent.com/npm/,说明镜像配置成功。

## **二、修改成淘宝镜像源**

1. 命令

npm config set registry https://registry.npmmirror.com

2. 验证命令

npm config get registry

如果返回https://registry.npmmirror.com,说明镜像配置成功。

## **三、修改成华为云镜像源**

1. 命令

npm config set registry https://mirrors.huaweicloud.com/repository/npm/

2. 验证命令

npm config get registry

如果返回https://mirrors.huaweicloud.com/repository/npm/,说明镜像配置成功。