centos7 已安装daocker 下载 python3.6的镜像环境
时间: 2024-04-12 07:28:15 浏览: 105
centos7安装python3.6
您可以使用以下命令来下载 CentOS 7 上的 Python 3.6 镜像环境:
```bash
docker pull centos:7
docker run -it --name python36 -d centos:7
docker exec -it python36 bash
# 在容器内安装 Python 3.6
yum update -y
yum install -y epel-release
yum install -y python36
```
这样,您就在名为 `python36` 的 Docker 容器中安装了 Python 3.6。您可以使用 `docker exec -it python36 bash` 命令进入容器,并在容器内执行 Python 3.6 相关的操作。
阅读全文