Installing Zipline in Jupyter Lab

Hi,

Is it possible to install and run the code of Chapter 4: Zipline Backtest with Single Factor in Jupyter Lab?
I am getting this error trying to run the cell ‘%load_ext zipline’:

`The zipline module is not an IPython extension.’

Has anyone encountered this error?

Thanks in advance

Thanks for your answers. I finally managed to work around the problem using this:

import os
from zipline.utils.run_algo import load_extensions

load_extensions(
default=True,
extensions=[],
strict=True,
environ=os.environ,
)