Some ipynb files are stored here:
/home/jeanpat/Developpements/iPythonNb
Starting ipython as follow to specify the path failed:
~$ ipython --notebook-dir=/home/jeanpat/Developpements/iPythonNb notebook
with the message:
[TerminalIPythonApp] Invalid argument: '--notebook-dir=/home/jeanpat/Developpements/iPythonNb'
ubuntu 13.10 ipython 0.13.2
asked Mar 18, 2014 at 12:58
Jean-Pat
1,8714 gold badges26 silver badges42 bronze badges
2 Answers 2
The order of your commands just needs switching:
~$ ipython notebook --notebook-dir=/home/jeanpat/Developpements/iPythonNb
The equivalent works for me (ubuntu 12.04, ipython 1.1.0).
answered Mar 18, 2014 at 16:08
Ian
1,5131 gold badge13 silver badges16 bronze badges
Sign up to request clarification or add additional context in comments.
Comments
I have to care about the argument order :
~$ ipython notebook --notebook-dir=/home/jeanpat/Developpements/iPythonNb
answered Mar 18, 2014 at 16:17
Jean-Pat
1,8714 gold badges26 silver badges42 bronze badges