React-native@0.26.3 requires a peer of react@15.0.2 but none was installed

后端 未结 4 1438
离开以前
离开以前 2021-02-19 12:23

I am trying to set up for the react native. but whenever I update files it gives m error

    enoent ENOENT: no such file or directory, open \'React Native/packa         


        
4条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-19 13:00

    Some steps that worked for me:

    1. watchman watch-del-all
    2. rm -rf node_modules
    3. npm install react@15.0.2 --save
    4. npm install react@15.1.0 --save
    5. npm install
    6. rm -fr $TMPDIR/react-*
    7. npm start -- --reset-cache
    

提交回复
热议问题