python module not found error

被刻印的时光 ゝ 提交于 2019-11-27 08:39:12

问题


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

Traceback (most recent call last):
  File "F:\Python36\Machine Learning\01.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.


回答1:


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



来源:https://stackoverflow.com/questions/45040175/python-module-not-found-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!