为什么React Native不能解析我的yarn版本?

zqdjd7g9  于 2023-10-22  发布在  React
关注(0)|答案(3)|浏览(128)

我用npx react-native init创建了一个新应用程序。安装完成,我可以用npx运行我的应用程序,但在安装过程中它给了我这个错误:

⠋ Downloading templateerror Cannot parse yarn version: 0.32
⠴ Downloading templateerror Cannot parse yarn version: 0.32
✔ Downloading template
✔ Copying template
✔ Processing template
⠋ Installing dependencieserror Cannot parse yarn version: 0.32
✔ Installing dependencies

类似地,如果我运行任何yarn命令,比如yarn start,它也无法识别它:
00h00m00s 0/0: : ERROR: [Errno 2] No such file or directory: 'start'
如果忽略yarn --version,则返回0.32。

gtlvzcf8

gtlvzcf81#

可能会丢失Yarn。通过npm安装:

sudo npm install yarn -g
oyjwcjzk

oyjwcjzk2#

sudo npm install --global yarn
xmd2e60i

xmd2e60i3#

1.删除过时版本的Yarn
sudo rm /bin/yarn(或下载的任何地方)
1.同时删除测试包
sudo apt-get remove测试
1.下载你需要的yarn版本https://github.com/yarnpkg/yarn/releases

  1. install -如果你正在运行Ubuntu - nav到你的下载目录,然后运行sudo dpkg -i yarn_1.22.19_all.deb

相关问题