Sheng Bi Asked: 2018-10-04 19:40:07 +0800 CST2018-10-04 19:40:07 +0800 CST 2018-10-04 19:40:07 +0800 CST 如何更改我的 jupyter notebook 工作目录? 772 我想更改我的 jupyter notebook 工作目录,我应该如何进行? 如果可能的话,我还想保留当前的工作目录。 ipython jupyter 1 个回答 Voted Best Answer Ravexina 2018-10-05T03:31:57+08:002018-10-05T03:31:57+08:00 您可以使用更改它--notebook-dir= jupyter notebook --notebook-dir=$HOME/Documents/MyProject 并且总是使用它而不--notebook-dir=让它在当前工作目录中运行: jupyter notebook 如果您总是在同一个目录上工作,请创建一个别名: alias my_jupyter='jupyter notebook --notebook-dir=$HOME/Documents/MyProject' 现在,当您运行my_jupyter“Jupyter”时,将在$HOME/Documents/MyProject.
您可以使用更改它
--notebook-dir=
并且总是使用它而不
--notebook-dir=
让它在当前工作目录中运行:如果您总是在同一个目录上工作,请创建一个别名:
现在,当您运行
my_jupyter
“Jupyter”时,将在$HOME/Documents/MyProject
.