标签:电脑 rate 分配 vim 命令行 -- enter auth Python自动化
公司分配了开发机,偶尔需要写一些python自动化脚本。为了提高编写效率,可以开发机上起一个jupyter web server,然后在电脑chrome浏览器进行编辑。
以下步骤均在开发机上操作。
pip install jupyter
jupyter notebook --generate-config
需首选进入python命令行
>>> from notebook.auth import passwd
>>> passwd()
>>> Enter password:
>>> Verify password:
>>> ‘sha1:5eb7241****************8e91d9ca9d53b‘
vim ~/.jupyter/jupyter_notebook_config.py
c.NotebookApp.ip=‘0.0.0.0‘
c.NotebookApp.password = u‘sha1:5eb7241****************8e91d9ca9d53b‘
c.NotebookApp.open_browser = False
nohup jupyter notebook > jupyter.log 2>&1 &
ifconfig
在自己电脑的浏览器访问 ip:端口
浏览器远程编写python代码--jupyter web server
标签:电脑 rate 分配 vim 命令行 -- enter auth Python自动化
原文地址:https://www.cnblogs.com/CocoML/p/12727194.html