美文网首页
docker centos容器安装Python3

docker centos容器安装Python3

作者: 奇楠之后 | 来源:发表于2020-04-07 21:22 被阅读0次

docker安装centos7

docker pull centos:centos7
docker run -it --name syy-centos centos:centos7
安装好的centos容器中存在python2,为centos容器安装上python3和pip,在此之前,先修改yum源,以便加快安装速度

修改yum源

  • 对系统yum源进行备份
    mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
  • 下载想使用的yum源,这里使用aliyun源
    curl http://mirrors.aliyun.com/repo/Centos-7.repo -O /etc/yum.repos.d/CentOS-Base.repo
  • 运行
    yum makecache
    yum -y update

安装python3

yum install epel-release
yum install python36
python 多版本共存下安装pip,通过get_pip.py脚本
wget/cul https://bootstrap.pypa.io/get-pip.py -o get-pip.py
sudo python36 get-pip.py
使用哪个版本的Python运行该脚本,pip就会与哪个python版本进行关联

docker编码格式问题

yum -y install kde-l10n-Chinese
yum -y reinstall glibc-common
localedef -c -f UTF-8 -i zh_CN zh_CN.utf8
export LC_ALL=zh_CN.utf8
echo 'export LC_ALL=zh_CN.utf8' >> ~/.bashrc

相关文章

网友评论

      本文标题:docker centos容器安装Python3

      本文链接:https://www.haomeiwen.com/subject/iyvophtx.html