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
网友评论