Docker学习记录 发表于 2019-10-11 更新于 2020-04-07 分类于 docker , ubuntu 阅读次数: 1. 安装Docker,略2. 启动Docker:1sudo systemctl start docker 3. 拉取镜像12345# 查看已有镜像docker images# 拉取镜像docker search centosdocker pull centos 4. 安装依赖以及下载Python3.71234567891011yum install openssl-devel bzip2-devel libffi-devel# 下载源码包wget -c https://www.python.org/ftp/python/3.7.2/Python-3.7.2.tar.xz# 解压xz -d Python-3.7.2.tar.xztar xvf Python-3.7.2.tarcd Python-3.7.2# 这里加上with-ssl 否则pip3无法使用./configure --prefix=/usr/local --with-sslmake -j && make install