For class I am using python arcade. I installed it with pip install arcade. When I attempt to import it with import arcade it pops up ModuleNotFoundError: No module named 'arcade'.
Ive uninstalled and reinstalled arcade. It shows up when I enter pip freeze. I am using VS Code on windows 10.
When I look in the 'errors' tab in VS Code it says "Unable to import 'arcade' pylint(import-error)[3,1]"
2 Answers
I used to have the same problem.
The solution in my case was installing modules by runningpython -m pip install <module> instead of pip install <module>
I have the same problem in the jupyter notebook and I have solved it as follow:
pip install notebook