Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

After calling ipython profile create ipython_notebook_config.py was not created

I have installed brand new ipython in a virtual enviorment, after that I tried to create configuration files via: ipython profile create, however ipython_notebook_config.py was not created, while ipython_config.py and ipython_nbconvert_config.py were created.

What can I do to create this file?

like image 771
jb. Avatar asked Aug 17 '14 09:08

jb.


People also ask

Where is IPython_ notebook_ config py?

Python config files These will typically be located in ~/. ipython/profile_default/ , and will be named ipython_config.py , ipython_notebook_config.py , etc.


1 Answers

It turns out that I forgot to install dependencies to ipython notebook (I just did: pip install ipython). After you install ipython[notebook] or ipython[all] (or just install notebook depencies by hand) ipython profile create will also create notebook config files.

like image 54
jb. Avatar answered Sep 26 '22 02:09

jb.