欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Anaconda上初次使用 jupter notebook

程序员文章站 2022-07-14 21:15:17
...

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

1)在conda终端使用命令(以下所有命令是指conda的终端Anaconda Prompt):

jupyter notebook --generate-config

会产生一个配置文件:

(base) C:\Users\Administrator>jupyter notebook --generate-config
Writing default config to: C:\Users\Administrator\.jupyter\jupyter_notebook_config.py

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

Anaconda上初次使用 jupter notebookAnaconda上初次使用 jupter notebook
  将前面的#注释去掉,在后面填上自己想要设置的初始化目录。比如我设置成c.NotebookApp.notebook_dir = 'F:\JupyterLib'
  以后就会将’F:\JupyterLib’这个目录成为初始化的目录。

注意:第一次安装Anaconda是没有.jupyter的文件夹的。

二、jupyter notebook密码设置

(1)修改配置文件,找到这个新生成的文件:

Windows: C:\Users\USERNAME\.jupyter\jupyter_notebook_config.py

搜索 NotebookApp.allow_password_change,改为:NotebookApp.allow_password_change=False ,记得去掉注释的#
Anaconda上初次使用 jupter notebook

3.回到Anaconda Prompt命令行,运行jupyter notebook password

C:\Windows\System32>jupyter notebook password
Enter password:             #键入密码,不显示的
Verify password:            #再次重复键入密码

Anaconda上初次使用 jupter notebook

[NotebookPasswordApp] Wrote hashed password to C:\Users\用户\.jupyter\jupyter_notebook_config.json     
#密码生成的一串sha1,写入到了这个文件,等下要把这串sha1,复制到第一个生成的配置文件中

4.还差一步密码才可以生效使用,在第一个jupyter_notebook_config.py配置文件中找到“c.NotebookApp.password“,等于刚生成的那个密码sha1,效果如下:去掉前面的”#“

Anaconda上初次使用 jupter notebook
c.NotebookApp.password = u’sha1:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx’
Anaconda上初次使用 jupter notebookAnaconda上初次使用 jupter notebook

相关标签: 笔记