当前位置:   article > 正文

如何在pycharm中方便地使用jupyter(2019ver)_pycharm自启动jupyter server 禁止修改token

pycharm自启动jupyter server 禁止修改token

每次复制粘贴token太麻烦。以下来自互联网。

首先进入终端,生成一个配置文件

jupyter notebook --generate-config
  • 1

然后

vi ~/.jupyter/jupyter_notebook_config.py
  • 1

搜索

c.NotebookApp.token = 'xxx'
  • 1

取消注释,并且将xxx改成自己想要的名字,保存。
以后用pycharm连接jupyter server就不用每次都复制粘贴token了。
如果想更懒,就直接把jupyter server设置开机启动,参数注意要加上–no-browser,防止弹出浏览器。

转自https://qiita.com/SaitoTsutomu/items/aee41edf1a990cad5be6

附:自启动方法:
注意:以下的bfortuner是用户名/组名,要填上自己机器上的名字。不要直接使用下面的用户名组名。

Create the file: /etc/systemd/system/jupyter.service
chmod 755

[Unit]
Description=Jupyter Workplace

[Service]
Type=simple
PIDFile=/run/jupyter.pid
ExecStart=/home/bfortuner/.local/bin/jupyter-notebook --no-browser
User=bfortuner
Group=bfortuner
WorkingDirectory=/home/bfortuner
Restart=always
RestartSec=10

[Install]
WantedBy=multi-user.target
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

Then, run the commands

systemctl enable jupyter.service
systemctl daemon-reload
systemctl restart jupyter.service
  • 1
  • 2
  • 3

https://forums.fast.ai/t/run-jupyter-notebook-on-system-boot/749/4

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号