2

我只是尝试使用 anaconda 在 Windows 10 中安装 ta-lib,conda install -c r2d2 ta-lib 当我import talib在 ipython notebook 中安装时,我得到:

ImportError Traceback (most recent call last)
<ipython-input-1-9bc7b4202a1f> in <module>()
----> 1 import talib

C:\Anaconda2\lib\site-packages\talib\__init__.py in <module>()
      2 import atexit
      3 
----> 4 from . import common
      5 from . import abstract
      6 from .common import MA_Type, __ta_version__

ImportError: cannot import name common
4

3 回答 3

3

我也在使用Windows 10,这个命令对我来说很好:

conda install -c quantopian ta-lib=0.4.9
于 2016-12-04T19:41:10.013 回答
1

我也在使用 Windows 10。这些命令对我有用:

conda install python=2.7.13

然后:

conda install -c quantopian ta-lib=0.4.9
于 2018-03-23T19:45:05.097 回答
0

或者,您可以打开 Conda Prompt(以便安装在 Conda 的基础环境中),然后您也可以使用 PIP:

pip install pandas-ta

它的工作原理与 conda 命令相同。

于 2021-03-05T04:11:34.843 回答