Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
910 views
in Technique[技术] by (71.8m points)

pip - python module not found error

This question has been asked a few times, but the remedy appears to complicated enough that I'm still searching for a user specific solution.

I recently installed Quandl module using pip command. Even after successful installation my python idle is still showing

error

Traceback (most recent call last):
  File "F:Python36Machine Learning1.py", line 3, in <module>
    import Quandl
ModuleNotFoundError: No module named 'Quandl'
  1. I have used import command in my code.
  2. I am using python 3.6.1 version.
  3. I am working on a windows 10 Desktop.
  4. I have also tried re-installation of module.

cmd image

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can better navigate to your python scripts folder and open a command window there and try pip3 install quandl .Hope this helps.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...