jupyternotebookpassword 然后根据提示输入密码并进行二次验证即可。 参考文章:What to Do When Your Jupyter Notebook Server Password is Invalid | Saturn Cloud Blog 接着是修改配置文件Jupyter_notebook_config.py 找到下面几个配置项并修改成对应的值就可以了。 c.ServerApp.ip='*'c.ServerApp.allow_root=Tr...
2.1 在对应的python环境下执行下面操作: fromnotebook.authimportpasswd p=passwd()print(p) 获得设置的hash密码(上面设置的是明文密码,获得的p为hash密码,下面用获得的hash密码p 进行设置) 2.2 在 ~/.jupyter/jupyter_notebook_config.py 中找到c.NotebookApp.password字段将其修改为上一步获得的hash密码: 2.3 ...
1. 生成配置文件 在命令行输入jupyter notebook --generate-config,然后就自动生成一个.jupyter的文件夹,里面有一份配置文件 2.设置密码 在命令行输入jupyter notebook password 然后根据提示输入两次设置的密码,完事儿就会生成一个json文件,会包含一个密码的字符串"sha1:xxxxxxxx",把这个字符串复制好,粘贴到生成的...
1,生成jupyter的配置文件:jupyter notebook --generate-config 2,控制台继续输入:jupyter notebook password (会输入两次密码,用来验证) 3,密码设置成功, 登录服务器: jupyter notebook jupyter notebook --ip=0.0.0.0 --port=8888 --allow-root 测试: 1.在弹出的web窗口中点击Loginout(右上角) 2.输入登录密...
$ jupyter notebook --generate-config 生成访问密码(token)终端输入ipython,设置你自己的jupyter访问密码,注意复制输出的sha1:xxxxxxxx密码串 In [1]: from notebook.auth import passwd In [2]: passwd() Enter password: Verify password: Out[2]: 'sha1:xxxxxxxxxxxxxxxxx' In [3]: quit()#退出 修改....
ipython notebook 设置密码后就不能使用 token 进入客户端网页了 1. 对应环境下 执行命令: jupyter notebook password 密码被写入 .jupyter/jupyter_notebook_config.json 中: 2. 重新启动 jupyter notebook 3. 使用密码进入 jupyter notebook网页客户端: ...
shift+enter执行命令并进入下一行。下一行输入: passwd() 回车后提示输入密码,输入两次。 哈希密码 sha1:158c74966eda:9533217697d0c62f0db43414ec4e06d4072c1cecc2e97d 再次打开配置文件jupyter_notebook_config.py,找到c.NotebookApp.password=第三步的哈希密码,重启jupyter notebook即可...
SHA1 密码串 生成密码串的方式:from notebook.auth import passwdpasswd()在python交互命令行中执行以上命令,然后两次输入密码,就会得到一个密码串,格式是:'sha1:<密码>' 将得到的密码串(包括 sha1 前缀) 赋值给c.NotebookApp.password以上是我最近遇到的一些设置项,更多的可以查看jupyter_notebook_config...
Enter password: Verify password: 会生成 .jupyter/jupyter_notebook_config.json文件,里面存的是加密过后的密码。 2.使用vim打开上面的文件: vim .jupyter/jupyter_notebook_config.json 3.把里面的一串代码复制出来,比如: "argon2:$argon2id$v=19$m=10240,t=10,p=8$yqX7AhTpZL3LTVSyGCnoYQ$3FGc8c3gVp...