getting errors while importing zipline
#!/usr/local/bin/python3.6
import pytz
from datetime import datetime
from Zipline.api import order, symbol, record, order_target
from Zipline.algorithm import TradingAlgorithm
from Zipline.utils.factory import load_bars_from_yahoo
import pyexcel
Load data manually from Yahoo! finance
start = datetime(2011, 1, 1, 0, 0, 0, 0, pytz.utc).date()
end = datetime(2012,1,1,0,0,0,0, pytz.utc).date()
data = load_bars_from_yahoo(stocks=['SPY'], start=start,end=end)
while running the above code the following error occurs
.Traceback (most recent call last): File "/home/veepsirtt/vpvp.py", line 4, in <module> from Zipline.api import order, symbol, record, order_target ModuleNotFoundError: No module named 'Zipline' zipline is already installed.How to fix it?.