赞
踩
每次复制粘贴token太麻烦。以下来自互联网。
首先进入终端,生成一个配置文件
jupyter notebook --generate-config
然后
vi ~/.jupyter/jupyter_notebook_config.py
搜索
c.NotebookApp.token = 'xxx'
取消注释,并且将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
Then, run the commands
systemctl enable jupyter.service
systemctl daemon-reload
systemctl restart jupyter.service
https://forums.fast.ai/t/run-jupyter-notebook-on-system-boot/749/4
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。