为什么@tensorflow/tfjs-react-native没有在react-native 0.724中安装?

qmelpv7a  于 2023-10-22  发布在  React
关注(0)|答案(1)|浏览(117)

我想在react-native(0.72.4)项目中使用bodySegmentation模型。我安装了tensorflow/tfjs-react-native(0.8.0),tensorflow/tfjs-react-native(11.4.0),tensorflow/tfjs(4.11.0),tensorflow/tfjs-react-native(18.2.0),但是当我尝试安装tensorflow/tfjs-react-native(0.8.0)库时,它给出了以下错误:无法解析依赖项:npm ERR!peer从@tensorflow/ email protected(https://stackoverflow.com/cdn-cgi/l/email-protection) npm ERR!node_modules/@tensorflow/tfjs-react-native npm错误!根项目中的@tensorflow/tfjs-react-native@"*”
我想安装tensorflow/tfjs-react-native(0.8.0)和react-native(0.72.4)。请建议一些方法来解决这个版本不兼容的问题。如果有人建议与package.json一起共享所需的包沿着,那就好了。

sxissh06

sxissh061#

这似乎是目前的解决方案:https://github.com/tensorflow/tfjs/issues/7323#issuecomment-1455001477
将整个platform_react_native.ts文件(此处为最新的4.2.0版本)复制到您的项目中,并在App.tsx中使用import './xxx/platform_react_native'初始化RN运行时;.

相关问题