Jupyterhub - 如何 select 安装 python 版本

Jupyterhub - how to select the installed python version

Jupyterhub 在创建新笔记本时使用特定的 python 版本。 我找不到在哪里设置这个版本。

我在 ubuntu 上安装了 anaconda,并在 python 和 anaconda 的发行版

之间创建了一个 link
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 ?

如果你想使用你的 python 版本,那么你必须创建一个新内核。从技术上讲,您的特定内核。 我将附上一个网站,说明您如何进行此过程: Install known Python version

希望对您有所帮助!