0.37 module can't be resolved.
See original GitHub issueDescription
While using ver 36, anything related to animations became so slow (The “slow animations” in simulator was off.) so I thought to update everything, and now for some reason, I get this message:
which is weird because :
*** Followed - #4968
tried :
first this ( because I use yarn):
rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build/ModuleCache/* && rm -rf node_modules/ && yarn cache clean && yarn install
and then I tried this
rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build/ModuleCache/* && rm -rf node_modules/ && npm cache clean && npm install
Any help would be great, really clueless what’s going on here.
Additional Information
- React Native version: 0.37
- Platform: IOS
- Operating System: MacOS El Capitan
Issue Analytics
- State:
- Created 7 years ago
- Reactions:4
- Comments:6
Top Results From Across the Web
Why can't the import be resolved? - Stack Overflow
I did this by going into the project directory, going to the scripts folder, and selecting python.exe . That solved the issue with...
Read more >ModuleNotFoundError: no module named Python Error [Fixed]
When you try to import a module in a Python file, Python tries to resolve this module in several ways. Sometimes, Python throws...
Read more >Installation — Numba 0.50.1 documentation
The easiest way to install Numba and get updates is by using conda , a cross-platform package manager and software distribution maintained by...
Read more >Creating QCoDeS instrument drivers
An InstrumentModule is a submodule of the instrument holding Parameter s. ... __init__ method, so that the full name of the instrument gets...
Read more >How to install, download and build Python wheels - ActiveState
... wheels are the preferred way that pip installs Python modules from ... Dependency resolution is at the core of the ActiveState Platform....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The new React version was definitely what was causing this for me. Some package dependencies were getting confused. Locking everything down to React 15.3.2 resolved this problem for me:
@gviligvili I updated to latest RC React-Native release and it fixed the issue.