Ubuntu 如何设置ipython工作目录?

Ubuntu 如何设置ipython工作目录?,ubuntu,ipython-notebook,Ubuntu,Ipython Notebook,某些ipynb文件存储在此处: /home/jeanpat/Developpements/iPythonNb 按如下方式启动ipython以指定路径失败: ~$ ipython --notebook-dir=/home/jeanpat/Developpements/iPythonNb notebook 我谨此致辞: [TerminalIPythonApp] Invalid argument: '--notebook-dir=/home/jeanpat/Developpements/iPyth

某些ipynb文件存储在此处:

/home/jeanpat/Developpements/iPythonNb
按如下方式启动ipython以指定路径失败:

~$ ipython --notebook-dir=/home/jeanpat/Developpements/iPythonNb notebook
我谨此致辞:

[TerminalIPythonApp] Invalid argument: '--notebook-dir=/home/jeanpat/Developpements/iPythonNb'
ubuntu 13.10
ipython 0.13.2

您的命令顺序只需要切换:

~$ ipython notebook --notebook-dir=/home/jeanpat/Developpements/iPythonNb
~$ ipython notebook --notebook-dir=/home/jeanpat/Developpements/iPythonNb

同样的方法对我也适用(ubuntu 12.04,ipython 1.1.0)。

我必须关心参数顺序: