我正在尝试使用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
我该怎么做才能解决此问题?
答案 0 :(得分:1)
yarn global add @react-native-community/cli@2.0.0-rc.2
然后react-native init MyApp
为我工作
答案 1 :(得分:0)
答案 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
这个对我来说很好!