如何修复React Native中的“无法找到模块“ ... / template.config”错误

时间:2019-09-28 09:27:55

标签: react-native

我正在尝试使用react-native init MyApp在React Native中创建一个新应用程序,但是出现了这个错误:

√ Downloading template
× Copying template
error Error: Cannot find module 'C:\Users\Emre\AppData\Local\Temp\rncli-init-template-hNGjwo\node_modules\react-native\template.config'

我尝试过的事情:

npm install -g react-native-cli

然后

react-native init MyApp

我该怎么做才能解决此问题?

4 个答案:

答案 0 :(得分:1)

yarn global add @react-native-community/cli@2.0.0-rc.2然后react-native init MyApp为我工作

答案 1 :(得分:0)

我正在使用nvm
nvm use 12.4.0解决了此问题。问题出在使用节点v10.16.3

enter image description here

答案 2 :(得分:0)

我通过使用纱线解决了问题 只需这样做:

第1步

安装纱线

第2步

yarn全局添加react-native-cli

第3步

本机初始化yourapp

答案 3 :(得分:0)

如果您已经安装了 npm ,则可以使用npm进行安装。只需输入:

npm install -g @ react-native-community / cli @ 2.0.0-rc.2

本机初始化名称name_of_the_app

这个对我来说很好!