本地pycharm连接远程linux服务器使用jupyter

安装jupyter

pip install jupyter

生成密钥

# 键入ipython
>>>from notebook.auth import passwd
>>>passwd()
# 输入2次密码后,复制输出的那一串字符串
>>>exit()

修改配置文件

vim ~/.jupyter/jupyter_notebook_config.py
#允许远程访问
c.NotebookApp.allow_remote_access = True

#允许所有IP都可访问
c.NotebookApp.ip = '*'

#将开启jupyter后在服务器上打开浏览器的选项设置为False
c.NotebookApp.open_browser = False

#将生成的密钥写进password中

c.NotebookApp.password = '........'

#指定访问端口
c.NotebookApp.port = 8888

开启jupyter

jupyter notebook

本地pycharm连接远程linux服务器使用jupyter_第1张图片

浏览器访问

在浏览器中输入上图ip地址,出现:

本地pycharm连接远程linux服务器使用jupyter_第2张图片

输入配置时输入的密码,就能登录。

在pychram中配置

本地pycharm连接远程linux服务器使用jupyter_第3张图片

ok后运行时会让你再次输入密码:

本地pycharm连接远程linux服务器使用jupyter_第4张图片

输入后即可在本地pycharm中使用远程服务器中的jupyter运行代码。

你可能感兴趣的:(python,pycharm,linux,服务器)