0

我一直在尝试在 OSX 10.11.2 上安装 zipline。

pip 安装失败并出现以下错误:

$ pip install zipline
Collecting zipline
  Using cached zipline-0.8.3-cp27-none-macosx_10_10_x86_64.whl
Collecting six==1.9.0 (from zipline)
  Using cached six-1.9.0-py2.py3-none-any.whl
Requirement already satisfied (use --upgrade to upgrade): python-dateutil==2.4.2 in /usr/local/lib/python2.7/site-packages (from zipline)
Collecting patsy==0.4.0 (from zipline)
  Using cached patsy-0.4.0-py2.py3-none-any.whl
Collecting numexpr==2.4.3 (from zipline)
  Using cached numexpr-2.4.3-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Collecting cyordereddict==0.2.2 (from zipline)
  Using cached cyordereddict-0.2.2.tar.gz
Collecting bcolz==0.10.0 (from zipline)
  Using cached bcolz-0.10.0.tar.gz
    Complete output from command python setup.py egg_info:
    * Found Cython 0.23.4 package installed.
    .. **ERROR:: You need numpy 1.7 or greater to run bcolz!**

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/sj/py2gp2555d15c757mxtpwmn80000gn/T/pip-build-se3cq5/bcolz

我检查了我的 numpy 版本,它是 1.10.2:

$ python
Python 2.7.11 (default, Dec  5 2015, 14:44:53) 
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.1.76)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> numpy.version.version
'1.10.2'

我尝试单独安装 bcolz (并且安装成功),但这并没有解决问题。

$ pip install -I zipline 

也没有用。

关于我应该如何安装 zipline 的任何想法?

编辑:我跑了pip install bcolz,安装的版本是 0.12.1:

/usr/local/lib/python2.7/site-packages/bcolz$ cat version.py
# coding: utf-8
# file generated by setuptools_scm
# don't change, don't track in version control
version = '0.12.1'
4

3 回答 3

1

您未提供的一项信息是bcolz您尝试单独安装的版本。如果不是 0.10.0,作为 zipline 要求文件固定的版本bcolz(见这里),如果已经安装了更新版本的 bcolz(如果你只是运行就会出现这种情况pip install bcolz),接下来安装的第一件事zipline将做的是降级您bcolz安装的版本。

如果你成功安装了 的版本0.10.0bcolz输出的错误肯定是不同的,有它会有所帮助!

[编辑]:所以通过运行pip install bcolz==0.10.0,您可以重现相同的问题。看来由于版本比较损坏,bcolz 在其 0.10.0 版本中将无法使用从 1.10 开始的 numpy 版本。唯一的解决方案是降级 numpy,并 ping zipline 开发人员,以便他们升级使用过的 bcolz 版本。

于 2015-12-24T16:31:51.643 回答
0

回答我的问题,以防有人遇到同样的问题。我最终使用 Anacaonda 安装了 zipline,结果还不错。包的变化是:

The following NEW packages will be INSTALLED:

    bcolz:         1.0.0-py27_0     
    click:         6.6-py27_0       
    contextlib2:   0.4.0-py27_0     
    cyordereddict: 0.2.2-py27_0     
    logbook:       0.12.5-py27_0    
    zipline:       0.9.0-np19py27_0 

The following packages will be UPDATED:

    bottleneck:    1.0.0-np110py27_0  --> 1.0.0-np19py27_0 
    numba:         0.24.0-np110py27_0 --> 0.24.0-np19py27_0
    patsy:         0.4.0-np110py27_0  --> 0.4.0-np19py27_0 
    scipy:         0.17.0-np110py27_0 --> 0.17.0-np19py27_0
    statsmodels:   0.6.1-np110py27_0  --> 0.6.1-np19py27_0 

The following packages will be DOWNGRADED:

    anaconda:      4.0.0-np110py27_0  --> custom-py27_0    
    astropy:       1.1.2-np110py27_0  --> 1.0.4-np19py27_0 
    h5py:          2.5.0-np110py27_4  --> 2.5.0-np19py27_3 
    matplotlib:    1.5.1-np110py27_0  --> 1.4.3-np19py27_3 
    numexpr:       2.5-np110py27_0    --> 2.4.6-np19py27_0 
    numpy:         1.10.4-py27_0      --> 1.9.3-py27_1     
    pandas:        0.18.0-np110py27_0 --> 0.16.2-np19py27_0
    pytables:      3.2.2-np110py27_1  --> 3.2.2-np19py27_0 
    scikit-image:  0.12.3-np110py27_0 --> 0.11.3-np19py27_0
    scikit-learn:  0.17.1-np110py27_0 --> 0.16.1-np19py27_0
于 2016-05-01T03:42:33.647 回答
-1

一直有完全相同的问题。只是为了补充答案。这是对我有用的终端命令:conda install -c quantopian zipline=1.0.2

于 2016-12-08T18:09:40.057 回答