简体   繁体   English

Python 3中的Quandl导入错误

[英]Quandl import error in Python 3

I'm using Python 3.6.3 on Windows 10 and Quandl module in my pip list, but I get the following error: 我在pip列表中的Windows 10和Quandl模块上使用的是Python 3.6.3,但是出现以下错误:

import quandl
Traceback (most recent call last):
  File "<pyshell#2>", line 1, in <module>
    import quandl
  File "C:\Users\Kamal\AppData\Local\Programs\Python\Python36-32\lib\quandl\__init__.py", line 3, in <module>
    from .api_config import ApiConfig

ModuleNotFoundError: No module named 'quandl.api_config'

Try pip3 install quandl . 尝试pip3 install quandl If you have python2 installed, there may be a mismatch in symlinks related to pip. 如果您安装了python2,则与pip相关的符号链接可能不匹配。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM