Jupyterhub 在创建新笔记本时使用特定的 python 版本。我找不到在哪里设置这个版本。
我在我的 ubuntu 上安装了 anaconda,并在 python 和 anaconda 的发行版之间创建了一个链接
usr/bin$ ls -l pyt*
lrwxrwxrwx 1 root root 24 Feb 9 18:34 python -> /usr/anaconda/bin/python
哪个有效:
:/usr/bin$ python
Python 3.5.1 |Anaconda 2.5.0 (64-bit)| (default, Dec 7 2015, 11:16:01)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
但是当我使用 jupyterhub 时,笔记本是使用另一个 python 安装创建的。我在jupyter的终端上看到正确的python版本是通过终端访问的。只有在笔记本上版本是错误的。
我应该创建一个特定的内核吗?或者我可以设置一个环境变量来让 jupyterhub 使用 anacondas 的 python 吗?