Python Forum

Full Version: ModuleNotFoundError 'wget'
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I get a ModuleNotFoundError when trying to import wget in a Python program within Spyder. I'm using Anaconda in Windows 8. When I launch the Anaconda Prompt and type 'pip install wget' the result is:

Requirement already satisfied: wget in c:\users\tuxedo\.julia\conda\3\lib\site-packages (3.2)

I've tried restarting Anaconda/Spyder but still get the ModuleNotFoundError. What am I doing wrong?
Make sure Spyder is using the same version of python as the rest of your system. https://stackoverflow.com/questions/4359...nda-spyder
Thanks for the suggestion. After some stumbling around, I managed to solve the problem by issuing 'pip install wget' from a terminal launched within Anaconda Navigator instead of using the Anaconda Prompt. No idea why those two are different.....