远程jupyter+pycharm配置 (一)之安装与使用技巧
远程访问 jupyter[这个简洁实用]
配置文件
密码设置
端口操作
增加kernel
配置文件
生成配置文件
jupyter notebook --generate-config
位置
Windows:C:\Users\USERNAME\.jupyter\jupyter_notebook_config.py
OS X:/Users/USERNAME/.jupyter/jupyter_notebook_config.py
Linux: /home/USERNAME/.jupyter/jupyter_notebook_config.py
配置内容
# c.NotebookApp.allow_password_change = True #允许首次使用hash登录后修改密码
c.NotebookApp.allow_remote_access = True #允许远程访问
c.NotebookApp.ip = '*' # 就是设置所有ip皆可访问
c.NotebookApp.open_browser = False # 禁止自动打开浏览器
c.NotebookApp.password = u'sha1:XXXXX' # 后面生成的密码填这里
c.NotebookApp.port = 8888
密码
bash设置密码
jupyter notebook password
python设置密码
from notebook.auth import passwd
passwd()
记得写入配置文件当中
使用nohup免得断连:
nohup jupyter notebook --allow-root > jupyter.log 2>&1 &
默认端口8888被挤占:
# 指定具体参数启动jupyter
jupyter notebook --no-browser --port=9997 --ip=127.0.0.1
查询端口号被哪个进程占用:
lsof -i
lsof -i:port
查询端口状态:
netstat -tunlp|grep 端口号