Today i created a venv in Python 3.5 in order to use the zipline package locally with Anaconda/Spyder.
I installed it with conda and installation seems to have gone well, but i have problems to find various modules of your tutorials.
For instance, the module
from zipline.pipeline.data.psychsignal import stocktwits
, when i run the script in Spyder the output is an ImportError 'no module named zipline.pipeline.data.psychsignal'.
I tried even in other ways, like 'from zipline.pipeline.data.psychsignal import stocktwits_limited_free' but without success.
Another example is
from zipline.algorithm import attach_pipeline
' and output is ImportError: cannot import name 'attach_pipeline'
I don't understand if i have to install other specific packages after i installed the quantopian zipline package or if there are limitations to use zipline locally.
Thank you