Reputation: 803
I've been trying to install Quantopian zipline (http://www.zipline.io/) python package through Anaconda, but have not been able to. When I run either of the lines below
conda install -c Quantopian zipline
conda install --channel https://conda.anaconda.org/Quantopian zipline
in the Anaconda prompt, I get a short pause and the message
Fetching package metadata... Solving package specification..
Error: package missing in current win-64 channels:
-zipline
However, if I run the search command "anaconda search -t conda zipline" I can see that Quantopian/zipline has a win-64 compatible package.
I have a 64-bit Windows 8.1 with conda ver 4.0.5.
Upvotes: 1
Views: 1399
Reputation: 487
The latest Zipline-Trader version was released. For stable version pip install zipline-trader
For more info follow docs for installation.
Upvotes: 0
Reputation:
These are the Requirements/ Steps to Make Zipline Work:
$conda create -n python34 python=3.4 anaconda
(replace py34 with the location of python34 folder)$activate python34
#Activates the python 3.4 environment$pip install -e C:\GitHub\zipline
(Directory where you extracted zipline)$zipline ingest
Hope this helps.
Upvotes: 0
Reputation: 71
Please check if the latest zipline has been build in their channel.
the same error happened to one of my colleagues with the last version of zipline (1.1.0) and mac OsX. We figured out that the guys at Quantopian didn't publish a build for that OS.
Workaround:
1 - try to install zipline via pip (as they say in the guidelines) or 2 - Download the source code ad build it by yourself :-)
Upvotes: 0