我在 Ubuntu 16.04 上安装了 spyder (Python2.7) 和 spyder3 (Python3.5)。我能够在 spyder (Python2.7) 设置中导入 quandl,但不能在 spyder3 (Python3.5) 中导入。你有什么建议吗?

以下是测试 Python 3.5 时在终端中返回的错误:

Python 3.5.2 (default, Nov 17 2016, 17:05:23)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import quandl
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named 'quandl'
>>> import Quandl
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named 'Quandl'

最佳答案

看起来您的 Python3.5 安装没有安装 quandl。

您可以使用以下命令通过 pip 轻松安装 quandl:pip install quandl
(或 pip3 install quandl 取决于您的系统配置)

关于python-3.x - 无法在 Python 3 中导入 quandl,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43026416/

10-13 08:47