从docker hub 下载了一个 tensorFlow(debian linux) 镜像,但是里面只支持python2.7 kernel, 不支持python3 kernel.
1. Notebook的右上角点new 只看到 python 2.7 kernel, 然后run 下面命令也可以证实
[root@pydev pydev]# jupyter-kernelspec list Available kernels: python2 /usr/lib/python2.7/site-packages/ipykernel/resources
2. 那如何才能把python3 kernel 加进去呢?
1).首先看是否已经python3安装,查了是有的
2). 然后看是否有Python3对应的pip3
python3 -m pip --version
发现没有这个模块
3. 因为官方的 tensforflow/tensorflow 镜像是debian的,用下面命令下载pip3 (其他 linux 系统请自行 google 或者 baidu 参考其他相应文档)
apt-get udpate
apt-get install python3-pip
4. 用pip3 安装Python3 kernel
python3 -m pip install ipykernel python3 -m ipykernel install --user
5. done.
另:
Linux server上安装配置 Jupyter 请看 linux端安装Anaconda,方便远端访问jupyter
如果你的Linux server 在google cloud 上,请参考这里 教程 | 只需15分钟,使用谷歌云平台运行Jupyter Notebook
Jupyter 怎么远程访问?
不记得以前怎么配置的,但是记得就是改了一个配置就行了,结果这次配置好像安全加强了,下面是一个通过ssh通道连接的方法,总觉得直接在config 文件配置 ip='0.0.0.0' 不是更好吗,但是确实试了过后发现不行.
参考这里 https://ambermd.org/tutorials/analysis/tutorial_notebooks/remote_notebook/index.html的解决方案
ssh -N -f -L localhost:8000:localhost:8000 your_account@your_cluster_address
Reference:
- centos 7 install jupyter notebook, https://jupyter.org/install
-
$python3 -m pip install --upgrade pip $python3 -m pip install jupyter
$jupyter notebook
-
- http://ipython.readthedocs.io/en/stable/install/kernel_install.html
- Centos 7 安装 python3 (不要卸载python2 因为yum 要用) https://phoenixnap.com/kb/how-to-install-python-3-centos-7
- Centos 7 安装python3 https://tecadmin.net/install-python-3-7-on-centos/
- Centos alternatives 控制多个版本的python https://linuxconfig.org/how-to-switch-between-python-versions-on-fedora-linux