sunwarr10r
sunwarr10r

Reputation: 4797

pip install zipline fails on Windows 10

I can't install zipline on Windows 10 with Python 3.6. I tried it with Pycharm and the terminal, both fail with this error message:

Command "python setup.py egg_info" failed with error code 1 in C:...\AppData\Local\Temp\pip-build-x6gaykzm\zipline\

I have also tried pip3 install --upgrade setuptools, pip install ez_setup and pip install ez_setup like suggested here and here

I have also installed numpy 1.13.0 + mkl

Can anybody help on this topic? Many thanks in advance!

Upvotes: 0

Views: 1109

Answers (2)

user8358924
user8358924

Reputation:

Good to know that you figured out the cause.

The reason for your problem was that the zipline doesn't support python 3.5 or above for now, but it does support python 3.4. and python 3.4 makes use of Microsoft Visual C++ 2010 Express(http://microsoft-visual-cpp-express.soft32.com/) and this is what python 3.4 is compatible with.

So it makes the zipline users a must have package in order to use zipline.

Upvotes: 1

sunwarr10r
sunwarr10r

Reputation: 4797

After installing Visual Studio C++ Build Tools and restarting the computer I could install zipline. I don't know which of the facts causes it.

Upvotes: 0

Related Questions