Linux上配置Jupyter Notebook远程访问

1. 安装ipython, jupyter

sudo pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple ipython //此时安装的是ipython3
sudo pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyter
若出现如下问题:
Cannot uninstall 'ipython'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
解决方法:
sudo apt-get remove ipython //移除旧版本
sudo -H pip install --ignore-installed -U ipython //忽略安装的旧版本

2.生成配置文件

ozh@zerotech-All-Series:~$ jupyter notebook --generate-config

3.生成密码

ozh@zerotech-All-Series:~$ ipython 
Python 3.5.1 (default, Oct 21 2016, 21:37:19)   
Type 'copyright', 'credits' or 'license' for more information  
IPython 6.2.1 -- An enhanced Interactive Python. Type '?' for help.  

In [1]: from notebook.auth import passwd  

In [2]: passwd()  
Enter password:   
Verify password:   
Out[2]: 'sha1:43b95b731276:5d330ee6f6054613b3ab4cc59c5048ff7c70f549'  

In [3]:   

4.修改配置文件

sudo vim /home/ozh/.jupyter/jupyter_notebook_config.py
c.NotebookApp.ip='*' #设置访问notebook的ip,*表示所有IP,这里设置ip为都可访问 
c.NotebookApp.notebook_dir = '/home/ozh/share/crowd_counting/CSRNet'#共享目录 
c.NotebookApp.password = u'sha1:5df252f58b7f:bf65d53125bb36c085162b3780377f66d73972d1' #填写刚刚生成的密文  
c.NotebookApp.open_browser = False # 禁止notebook启动时自动打开浏览器(在linux服务器一般都是ssh命令行访问,没有图形界面的。所以,启动也没啥用)  
c.NotebookApp.port =8899 #指定访问的端口,默认是8899  

5.启动jupyter notebook

ozh@zerotech-All-Series:~$ jupyter notebook

6.在浏览器里输入你的地址 http://IP:8899/,然后输入密码,就能看到你共享的目录

猜你喜欢

转载自blog.csdn.net/u013187057/article/details/81477149