No Module named arcade

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

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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like