sohini
sohini

Reputation: 1

Zipline installation trouble

After I installed zipline with the anaconda prompt everything was imported and installed correctly. But in the Jupyter notebook, I am getting error like no module called 'matplotlib' or pandas 'DataReader' is not working. When I try to install it in the notebook and restart the kernel, the zipline import is no longer working. How can I solve this? What is wrong with the zipline installation?

Upvotes: 0

Views: 484

Answers (2)

user3588786
user3588786

Reputation: 11

You can use the reloaded version

pip install zipline-reloaded

I used it and it works

See more in this here https://pypi.org/project/zipline-reloaded/

Upvotes: 0

Shayan Shahrestani
Shayan Shahrestani

Reputation: 11

zipline has very specific dependencies like pandas 0.18.0 and pandas DataReader 0.8.0. So make sure you have the correct version of those. And by the way, I find the tutorial here very useful.

Hope it could help

Upvotes: 1

Related Questions