React Native Ios 视频安装 npm

React Native Ios Video install npm

我在尝试安装视频组件时总是遇到错误。我输入:`npm install --save react-native-video

npm ERR! enoent This is related to npm not being able to find a file.

还有其他人 运行 遇到过这个问题吗?以上是错误。说 npm 找不到文件路径?很困惑,因为我将视频组件安装在与 npm 安装包相同的文件夹中。

我能够毫无问题地安装它,当您尝试安装库时收到的堆栈跟踪是什么?

我会 运行 npm config ls 并确保您指向正确的注册表。另外,你有代理吗?

也许您可以尝试以下方法,看看它是否有助于解决您的问题:

  1. npm cache clean --force
  2. npm config set registry https://registry.npmjs.org/
  3. npm i react-native-video

希望对您有所帮助!