0

我尝试在 ubuntu 14.04 中安装 zipline,当我尝试使用 pip 安装 zipline 时,我尝试使用 pip 或 git 这个错误是 showa:

  najeeb@najeeb:~$ sudo -H pip install zipline
   Collecting zipline
   Downloading zipline-0.8.3.tar.gz (815kB)
   100% |████████████████████████████████| 815kB 161kB/s 
    Complete output from command python setup.py egg_info:
Requirement already satisfied (use --upgrade to upgrade): numpy==1.9.2 in /usr/local/lib/python2.7/dist-packages
Requirement already satisfied (use --upgrade to upgrade): Cython==0.22.1 in /usr/local/lib/python2.7/dist-packages
Traceback (most recent call last):
  File "<string>", line 20, in <module>
  File "/tmp/pip-build-j_BiQ5/zipline/setup.py", line 199, in <module>
    packages=find_packages('.', include=['zipline', 'zipline.*']),
TypeError: find_packages() got an unexpected keyword argument 'include'

----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-j_BiQ5/zipline

我希望有人能帮助解决问题 在此处输入图像描述

4

3 回答 3

3

尝试更新setuptools3.3 版中添加include了 的参数。也许您正在运行旧版本?find_packages

为此,请使用:

pip install --upgrade setuptools
于 2015-11-16T11:10:44.380 回答
2

我有同样的问题。试试这种方式,它对我有用:

$ pip install numpy
$ pip install cython
$ pip install -U setuptools
$ pip install zipline
于 2016-10-03T20:59:09.517 回答
1

据我了解,您尝试在系统中安装 zipline。我建议使用 conda 环境。首先,安装 anaconda 访问https://anaconda.org/anaconda/python 然后创建 python 环境并为您的项目安装唯一的包。这不会影响您的系统。在这之后。创建 evn。

conda create --name my_env python=3

启用:

source activate my_env

信息

conda info --envs

于 2018-04-01T14:02:34.417 回答