为anaconda的jupyter notebook设置初始化目录

在使用jupyter进行编程时,初始化目录可能不是自己想要的目录,那么下面讲解修改成自己想要的目录。

1) 在命令行中输入jupyter notebook --generate-config,会产生一个配置文件

  我的会显示Writing default config to: C:\Users\allen\.jupyter\jupyter_notebook_config.py这样的提示。

2) 找到对应的文件,搜索c.NotebookApp.notebook_dir

  将前面的#注释去掉,在后面填上自己想要设置的初始化目录。比如我设置成c.NotebookApp.notebook_dir = u‘D:\chengxu\ML‘

  以后就会将‘D:\chengxu\ML‘这个目录成为初始化的目录。

时间: 2024-10-28 16:31:41

为anaconda的jupyter notebook设置初始化目录的相关文章

jupyter notebook 设置默认目录

1.打开 cmd 输入命令 jupyter notebook --generate-config 可以看到生成文件的路径,这个就是生成的配置文件jupyter_notebook_config.py, 2.打开后找到 这个地方 删除前面的’#‘ 然后填写自己的路径,保存,启动 jupyter notebook

怎么配置Jupyter Notebook默认启动目录?

前言 系统环境:win10 x64:跟环境也没啥关系,在LInux下也一样... 前段时间重换了系统后,发现Jupyter Notebook的默认启动目录不太对呀,所以,就翻到了以前的笔记,还是记在这里吧. 配置Jupyter Notebook默认启动目录 原环境 查看Jupyter Notebook快捷方式的属性,注意到目标栏目里面,默认启动目录是%USERPROFILE%,也就是用户目录下的个人账户目录. 配置步骤 删除快捷方式的属性中的%USERPROFILE% 修改Jupyter Not

本地远程连接服务器上的Jupyter Notebook设置方法

完整原文:https://hongwan.xyz/archives/ 使用Jupyter可以在本地电脑直接新建和编辑linux服务器的代码,比如python和R,非常方便: 本机为:Win10 服务器:CentOS Linux release 7.3.1611 1.远程服务器安装Jupyter 本人之前安装Anaconda自带了jupyter notebook,因此可以直接使用.如果没有,可通过以下命令安装: pip install jupyter notebook 2.服务器端Jupyter配

配置Anaconda的jupyter notebook默认主页

1. 在Anaconda Prompt里输:jupyter notebook --generate-config 然后找到这个文件:C:\Users\{YOUR NAME}\.jupyter\jupyter_notebook_config.py, 修改这条字段:c.NotebookApp.notebook_dir = u'E:\\Programs\\notebook' 即可. 2. 如果你的机器还有其他python编译器,那么也许需要重启一下机器才会生效. 3. 我遇到的问题: 有一天我把上面配

jupyter notebook 更改工作目录

环境: win10 anaconda3 steps: 1) open anaconda prompt 2) change the current directory to the destinated working directory 3) input "jupyter notebook" then the default working directory will be the current directory ....

ubuntu下anaconda使用jupyter notebook加载tensorflow、pytorch

1. 安装完anaconda后,其环境会为我们在base(root)这个环境下配置jupyter notebook,而我们自己配置的TensorFlow环境下是没有自动配置这个工具的,所以我们需要自己在这个环境下配置jupyter notebook工具,具体操作如下: 1 conda activate tf #首先激活自己的tensorflow环境,tf为我自己的环境名,注意更改 有的博客中 使用的是 source activate tf, 2 conda install ipython 3 c

windows更改Jupyter Notebook工作的目录

1.将打开的Jupyter Notebook程序关闭,然后找到桌面快捷方式,右键=>属性,然后把目标后面输入框最后的"%USERPROFILE%"这个参数去掉后,确定.否则之后做的其它修改无法生效.可以看到如下图: 2.右键属性进入并修改起始位置的地址为E:\Jupyter,然后应用便可成功 原文地址:https://www.cnblogs.com/Time-LCJ/p/9203054.html

anaconda中jupyter notebook安装代码自动补全插件,报错“Exception: Jupyter command `jupyter-contrib` not found.”

????最初在子环境中安装,但是老出现问题,于是就在base环境中安装,运行命令(使用管理员模式打开anaconda prompt应该会避免一些问题): 一.安装nbextensions(后续:使用conda命令简单还可以避免许多问题,但我已经安装好了,懒得改博客了.) 参考博客:https://blog.csdn.net/sinat_38413689/article/details/88610033 pip install --user jupyter_contrib_nbextensions

编写python代码的另一个有力武器anaconda 之jupyter notebook

1,anaconda有64位和32位两个版本,支持主流操作系统 2,可在清华镜像网站下载(曾经终止过,现在已经恢复) 3,下载安装后要装插件,可以是通过nbextensions(参见:https://blog.csdn.net/August1226/article/details/80762632) pip install jupyter_contrib_nbextensions jupyter contrib nbextension install --user jupyter nbexten