Zipline Ingest -b quandl command not working

In Chapter 4 fourth notebook (“04_single_factor_zipline.ipynb”), there was an issue with the line:

%%zipline --start 2015-1-1 --end 2018-1-1 --output single_factor.pickle --no-benchmark --bundle quandl

This was because I had not yet ingested the data, but when I go to do this using the following:

import quandl quandl.ApiConfig.api_key = '[MY_API_KEY]'

and then the following:

!zipline ingest -b quandl

I get the following error message:

Can anyone help me figure this out, or suggest suitable alternatives to zipline and its data sources for this notebook?

Thanks!