当我打开Jupyter笔记本(以前是IPython)时,它默认为c:\ users \ username
我如何将其更改为另一个位置?
当我打开Jupyter笔记本(以前是IPython)时,它默认为c:\ users \ username
我如何将其更改为另一个位置?
当前回答
对于linux和Windows: 只要修改一行,你就可以改变它。
1. Open file
cwp.py
in
C:\Users\[您的计算机名]\Anaconda2
.
2. find the line
os.chdir (documents_folder)
在文件的末尾。
改为
操作系统。Chdir(“您期望的工作文件夹”)
例如:os.chdir("D:/Jupyter_folder")
3. save and close.
它工作。
更新:
说到MacOS,我找不到ccp .py。 以下是我的发现:
打开你的Macbook终端,运行'jupyter notebook -generate-config'。
它将在/Users/[your_username]/.jupyter/jupyter_notebook_config.py目录下创建一个配置文件
打开配置文件,然后更改这一行#c.NotebookApp。Notebook_dir = " 来 c.NotebookApp。Notebook_dir = '你的路径' 记住这一行也要取消注释。
例如,我将路径更改为“/Users/catbuilts/JupyterProjects/”
其他回答
只需遵循官方网站上的指南,也复制在下面。对于第一步,而不是复制启动器,您只需转到开始菜单并右键单击打开位置。
Copy the Jupyter Notebook launcher from the menu to the desktop. Right click on the new launcher and change the “Start in” field by pasting the full path of the folder which will contain all the notebooks. Double-click on the Jupyter Notebook desktop launcher (icon shows [IPy]) to start the Jupyter Notebook App, which will open in a new browser window (or tab). Note also that a secondary terminal window (used only for error logging and for shut down) will be also opened. If only the terminal starts, try opening this address with your browser: http://localhost:8888/.
Jupyter笔记本——help-all可能会有帮助:
--notebook-dir=<Unicode> (NotebookManager.notebook_dir)
Default: u'/Users/me/ipynbs'
The directory to use for notebooks.
例如:
jupyter notebook --notebook-dir=/Users/yourname/folder1/folder2/
如果需要,你当然可以在你的配置文件中设置它,你可能需要在Windows中转义反斜杠。
注意,这将覆盖您在jupyter_notebook_config.py文件中设置的任何路径。(在这里你可以设置一个变量c.NotebookApp。Notebook_dir将是您的默认启动位置。)
如果你在linux中使用ipython,那么按照以下步骤: ! cd / directory_name / 您可以尝试在您的linux终端中工作的所有命令。 ! vi file_name.py
只需在linux命令之前指定感叹号(!)符号。
当我搜索ipython change pwd时,这个问题不断出现,尽管我对笔记本电脑不感兴趣,但我对终端或qtconsole感兴趣。没有找到相关的配置项,我尝试了:
# lines of code to run at IPython startup.
c.InteractiveShellApp.exec_lines = ['%cd /home/paul/mypy']
这是基本的shell类;还有终端和控制台(可能还有笔记本)条目可以进一步定制操作。
从文档来看,import语句在条目中最常见,但似乎许多神奇的命令也能起作用。
操作系统Windows 10 蟒蛇2018年版
通过配置文件更改jupyter笔记本的工作目录:
打开cmd提示符(或Anaconda提示符),然后输入'jupyter notebook—generate-config'并按enter 这将自动创建一个文件'jupyter_notebook_config'在'C:\Users\username. config'jupyter \ '文件夹 查找创建的文件'jupyter_notebook_config'并编辑它。 查找#c.NotebookApp。Notebook_dir = " 把你想要的路径放在双引号内,它变成。>c。notebookapp。notebook_dir = 'D:/my_folder/jupiter' 注意使用了正斜杠(/),并且删除了注释(#)。
因此,
#c.NotebookApp.notebook_dir = ''
编辑成
c.NotebookApp.notebook_dir = 'D:/your/desired/path'
让我们修改Jupyter Notebook快捷图标的路径 6.0在开始菜单中,右键单击快捷方式,打开文件夹位置。 6.1进入文件夹后,建议创建一个Jupyter快捷方式的副本, 6.2右键单击新的快捷图标打开属性,
最后,
6.3在目标文本框中,删除路径末尾的%USERPROFILE%,超长路径应该以jupyter-notebook-script.py结束
搜索我的视频 Jupyter笔记本-更改工作文件夹路径从默认到所需的路径