如何在 CentOS 之上安装 Ubuntu

如何在 CentOS 之上安装 Ubuntu

现在我有安装了CentOS的服务器,我想安装只能安装在Ubuntu上的Jupyter hub,有没有办法在CentOS之上安装Ubuntu,而不是并排安装?

答案1

你被误导了JupyterHub 的安装要求。根据他们的文档,唯一的要求是 Linux 和 python v3.5 或更高版本。以下是安装说明:

通过

python3 -m pip install jupyterhub
npm install -g configurable-http-proxy
python3 -m pip install notebook  # needed if running the notebook servers locally

通过康达

conda install -c conda-forge jupyterhub  # installs jupyterhub and proxy
conda install notebook  # needed if running the notebook servers locally

相关内容