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
将前面的#注释去掉,在后面填上自己想要设置的初始化目录。比如我设置成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
,记得去掉注释的#
3.回到Anaconda Prompt命令行,运行jupyter notebook password
C:\Windows\System32>jupyter notebook password
Enter password: #键入密码,不显示的
Verify password: #再次重复键入密码
[NotebookPasswordApp] Wrote hashed password to C:\Users\用户\.jupyter\jupyter_notebook_config.json
#密码生成的一串sha1,写入到了这个文件,等下要把这串sha1,复制到第一个生成的配置文件中
4.还差一步密码才可以生效使用,在第一个jupyter_notebook_config.py配置文件中找到“c.NotebookApp.password“,等于刚生成的那个密码sha1,效果如下:去掉前面的”#“
c.NotebookApp.password = u’sha1:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx’
上一篇: 思岚A1激光雷达windows系统与ROS系统中的使用
下一篇: R语言 数据处理 ARIMA预测
推荐阅读
-
anaconda 环境新建/删除/拷贝 jupyter notebook上使用python虚拟环境 TensorFlow
-
ModuleNotFoundError: No module named 'torch'(anaconda安装好Pytorch却无法在Jupyter notebook使用)
-
Anaconda上初次使用 jupter notebook
-
Python3.8环境配置Anaconda3+jupter notebook配置设置
-
Ubuntu16.04上使用Anaconda3的Python3.6的pip安装UWSGI报错解决办法
-
在Anaconda虚拟环境中使用jupyter notebook
-
【亲测好用】Windows系统下的 jupyter notebook 使用 anaconda 的 virtualenv 虚拟环境
-
anaconda 环境新建/删除/拷贝 jupyter notebook上使用python虚拟环境 TensorFlow
-
jupyter notebook在服务器上的使用
-
Anaconda虚拟环境安装Jupyter Notebook并更换默认工作目录详细教程及使用攻略