ubuntu配置spyder和jupyter notebook的工作目录

一.spyder

打开spyder->Tools->Preferences->Global working directory

然后选择the following direction,填写需要的地址就可以了

我选择的是/home/wjc/spyder

在终端运行spyder 打开spyser

二.jupyter notebook

第一次用的话,需要新建一个文件,直接ctrl+alt +t ,打开终端,在命令行输入

jupyter notebook --generate-config

会在~目录下的隐藏文件夹.jupyter生成一个jupyter_notebook_config.py 的文件

然后编辑这个文件

vim ~/.jupyter/jupyter_notebook_config.py  

向下翻到100多行左右,找到#c.NotebookApp.notebook_dir =''

然后进行修改,将前面的#删了,然后在''里面写入自己的工作路径,我的是/home/pc314/Documents/jworkspace/

按一下Ese,然后键入:wq进行保存

在终端运行jupyter notebook 打开jupyter notebook



你可能感兴趣的:(Ubuntu下的各种安装)