我是react-native的初学者,我在react-native的网站上进行操作 并且该应用正常运行,
但进行一些更新
npm i react@latest --save
npm i react-native@latest --save
react-native upgrade
之后,我无法通过
创建任何项目react-native init projectName
我收到此错误 image link
答案 0 :(得分:0)
这在Windows上使用最新版本的react native(0.56)实际上是一个问题
通过输入react-native init --version="0.55.4" projectName
尝试使用0.55.4版
答案 1 :(得分:0)
并非每个版本的react-native都与每个版本的react兼容。在您发送的屏幕快照中,它说您需要react@16.4.1才能使用react-native@0.56.0。尝试执行npm i react@16.4.1 --save
,然后再次尝试react-native init projectName
。