登录 主页

为 react 搭建环境

2023-10-14 02:51PM

ubuntu 22.04 安装React node yarn 然后启动

1. 确保有 nvm,但是这个版本太低了

nvm --version
0.39.5

2. 重新安装 nvm

$ nvm install 20.5.0

切换版本:

$ nvm use 20.5.0

查看版本:

$ node -v

3. 更新npm 与node匹配:

$ npm install -g npm@latest

查看 npm 版本:

npm -v

4.安装yarn:

$ sudo apt install yarn

如果报错说:

node -v
v0.10.37
meiyi@meiyi-Extensa-2511G:~/workspace$ npx create-react-app my-app

/usr/share/nodejs/npm/bin/npx-cli.js:23
...removedSwitches,
^
SyntaxError: Unexpected token .
at Module._compile (module.js:439:25)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:935:3

可以清除缓存:

1. 运行sudo apt remove cmdtest命令,将已安装的"cmdtest"软件包卸载掉。

2. 运行sudo apt autoremove命令,删除不再需要的自动安装的软件包。

3. 运行sudo apt update命令,更新软件包列表。

4. 运行sudo apt install yarn命令,重新安装Yarn。

如果报错说:

Setting up cmdtest (0.32.14.gcdfe14e-2) ...
Processing triggers for man-db (2.10.2-1) ...
meiyi@meiyi-Extensa-2511G:~/workspace/react_learn_for_d3_svg_path_20230912$ yarn -v
ERROR: There are no scenarios; must have at least one.

需要重新安装:

sudo apt install yarn

也可能是因为软件源问题:

# 运行下面这几个命令

1. curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
2. echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
3. sudo apt update
4. sudo apt install yarn

5.启动项目:

yarn start  

 

返回>>

登录

请登录后再发表评论。

评论列表:

目前还没有人发表评论