1、设置服务端 jupyter notebook
设置 jupyter notebook 可远程访问
2、关闭服务器防火墙
CentOS 6和CentOS 7防火墙的关闭
或者只打开一个端口
sudo firewall-cmd --zone=public --list-all
firewall-cmd --get-active-zones
sudo firewall-cmd --zone=public --add-port=8000/tcp --permanent
sudo firewall-cmd --reload
sudo systemctl restart firewalld
3、jupyter notebook 使用虚拟环境
给jupyter notebook配置虚拟环境, 我这里虚拟环境的名字为py365
pip install ipykernel
python -m ipykernel install --name py365
报错:[Errno 13] Permission denied: '/usr/local/share/jupyter'
因为我的conda 是在自己目录下安装的,不是root安装的,这里默认是root的。加上 --user, python -m ipykernel install --name py365 --user
成功
image.png
Jupyter Notebook 增加kernel的方法
[Errno 13] Permission denied: '/usr/local/share/jupyter'
网友评论