nodejs、yarn安装
# Windows
# 1. 安装nodejs:
从nodejs官网 (opens new window) 下载安装包安装。
# 2. 配置nodejs相关路径
npm config set prefix "D:\nodejs\node_global"
npm config set cache "D:\nodejs\node_cache"
1
2
3
2
3
然后将D:\nodejs\node_global
添加到PATH环境变量。
# 3. yarn安装
npm install -g yarn@latest
1
# 4. 配置yarn相关路径
yarn config set prefix "D:\nodejs\yarn-data"
yarn config set global-folder "D:\nodejs\yarn-global"
yarn config set cache-folder "D:\nodejs\yarn-cache"
yarn config set link-folder "D:\nodejs\yarn-link"
1
2
3
4
5
2
3
4
5
# Linux
# 1. 安装nodejs:
注意
不要使用apt安装,版本太老!
到nodejs官网 (opens new window)直接看安装命令,比如使用fnm和22版本的node,命令如下:
curl -fsSL https://fnm.vercel.app/install | bash
fnm use --install-if-missing 22 # 版本根据需要修改
1
2
2
如果第一行命令提示Could not infer shell type. Please set up manually.
,可以先下载那个文件,然后手动编辑sh文件里面的setup_shell函数,直接保留你想要的那个shell的命令就可以。
# 2. 配置nodejs相关路径
npm config set prefix "~/nodejs/node_global"
npm config set cache "~/nodejs/node_cache"
1
2
2
编辑 (opens new window)
上次更新: 2024/11/17, 13:04:13
- 02
- containerd高版本换源,containerd换源无效问题11-07
- 03
- apt-get使用代理11-05