为什么在“ npm”注册表上找不到所需的软件包

问题描述 投票:1回答:2

我在react-native中使用此教程视频React Native Web Full App Tutorial - Build a Workout App for iOS, Android, and Web 运行Web应用程序时遇到问题。我一直在寻找一个答案,但是还没有一个准确的答案可以解决我的问题。

我从这里下载了该应用程序:git repo

尝试使用:

$ yarn
$ yarn install
$ npm install
$ npm config set @icons:registry https://registry.npmjs.org/
$ rm -rf node_modules
$ npm i https://github.com/Qix-/node-error-ex
$ curl 'https://registry.yarnpkg.com/@types/node/-/node-9.4.2.tgz'

但是似乎没有任何作用,我不断收到此错误。

error Couldn't find package "@wow/[email protected]" required by "@wow/[email protected]" on the "npm" registry.
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
Error: Couldn't find package "@wow/[email protected]" required by "[email protected]" on the "npm" registry.
    at MessageError.ExtendableBuiltin (/usr/local/Cellar/yarn/1.22.4/libexec/lib/cli.js:721:66)
    at new MessageError (/usr/local/Cellar/yarn/1.22.4/libexec/lib/cli.js:750:123)
    at PackageRequest.<anonymous> (/usr/local/Cellar/yarn/1.22.4/libexec/lib/cli.js:36539:17)
    at Generator.throw (<anonymous>)
    at step (/usr/local/Cellar/yarn/1.22.4/libexec/lib/cli.js:310:30)
    at /usr/local/Cellar/yarn/1.22.4/libexec/lib/cli.js:323:13
    at processTicksAndRejections (internal/process/task_queues.js:97:5)

或运行该应用程序需要执行的所有步骤。因为我要下载该应用程序并编辑正文内容。

长期以来,没有帖子,请尝试遵循How do I ask a good question? Tutorial,对于编辑我的问题的任何评论或建议都非常受欢迎。

非常感谢,隔离愉快。

javascript react-native npm command-line-interface yarnpkg
2个回答
1
投票

我尝试自己下载并测试它,它正常工作。

再次克隆它,然后执行以下步骤:

#After cloning enter the folder
cd react-native-web-series
#install all dependencies
yarn install
#Navigate to the web folder
cd packages/web
#start the app
yarn start

Ps。 :如果一个项目正在使用yarn不是运行npm命令的理想方法,请不要将两者混用


0
投票

查看git repo后-我认为也许您应该尝试将npm i(或其他命令-im不是来自本机区域)以任何程序包(应用程序,通用,网络)运行到自身-就像我看到的任何一个其中有他自己的package.json

© www.soinside.com 2019 - 2024. All rights reserved.