ipython 4.0.0 loses "--pylab inline" functionality recommended in README.md
danbri opened this issue · 1 comments
danbri commented
notebook --pylab inline
[E 11:11:32.373 NotebookApp] Support for specifying --pylab on the command line has been removed.
[E 11:11:32.373 NotebookApp] Please use `%pylab inline` or `%matplotlib inline` in the notebook itself.
danbri-macbookpro2:Neural-Networks-Demystified danbri$ ipython notebookip
danbri-macbookpro2:Neural-Networks-Demystified danbri$ ipython --version
4.0.0
... this is recommended in https://github.com/stephencwelch/Neural-Networks-Demystified/blob/master/README.md presumably to include e.g. numpy as np.
I believe this setup should also work:
cat ~/.ipython/profile_default/startup/go.py
import numpy as np
stephencwelch commented
Added %pylab inline to each notebook, thank you!