From the Pipeline Tutorial "Creating Our Universe" I ran the code provided without error until I ran the following:
from codeload.pipeline_tutorial.tradable_stocks import TradableStocksUS
universe = TradableStocksUS()
I then received the following error:
ModuleNotFoundError Traceback (most recent call last)
Input In [55], in <cell line: 1>()
----> 1 from codeload.pipeline_tutorial.tradable_stocks import TradableStocksUS
3 universe = TradableStocksUS()
ModuleNotFoundError: No module named 'codeload.pipeline_tutorial'
Guidance on the above would be great.
Thanks.