pandasnumpyzipline

No module named zipline (Python 64 bit and Windows 64 bit)


I am unable to use Zipline via import zipline as zp as I get the following error

 No module named zipline

I also checked python installation on my windows machine and found it is 64 bit

import platform
platform.architecture()

and i get the following

('64bit', 'WindowsPE')

I am running python 64 bit on windows 64 bit machine and installed zipline via anaconda

pip install zipline 

and it shows that is successfully installed. However, I still get above error


Solution

  • Don't install via pip install zipline; this is liable to fail for a large number of reasons. Follow their directions on PyPi and try conda install -c Quantopian zipline instead.