云网牛站
所在位置:首页 > Linux软件 > Ubuntu上下载及安装Repo2Docker

Ubuntu上下载及安装Repo2Docker

2018-08-06 15:06:22作者:openthings稿源:linux网

Repo2Docker是BinderHub用于构建容器镜像的工具,同时Repo2Docker还是Jupyter的一个子项目。下面介绍如何在Ubuntu上安装Repo2Docker。

 

Repo2Docker项目地址,当前最新版本是0.5。

 

在Ubuntu上安装及基本使用Repo2Docker的步骤:

1.安装Miniconda,将缺省安装python3

wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh

chmod +x Miniconda3-latest-Linux-x86_64.sh

./Miniconda3-latest-Linux-x86_64.sh

2.安装repo2docker

pip install jupyter-repo2docker

3.下载一个支持repo2docker的github项目:

git clone https://github.com/openthings/databook

4.然后开始构建

jupyter-repo2docker ./databook

如果是使用root账号(如云服务器中),使用下面的方法:

repo2docker --no-run --user-id 1001 --user-name crowdai --debug ./databook

最后,使用命令 docker images 查看构建的镜像。

 

项目主页提供的安装方法

1.To install from PyPI, the python packaging index, using pip:

pip install jupyter-repo2docker

2.To install from source:

git clone https://github.com/jupyter/repo2docker.git

cd repo2docker

pip install -e .

 

相关主题

在Ubuntu18.04中使用python的注意事项:pip安装,pip提速

精选文章
热门文章