怎么利用yum配置python3.8环境
时间: 2024-09-19 08:12:34 浏览: 54
在 CentOS 或者 RHEL 系统中,你可以使用 `yum` 软件包管理器来安装 Python 3.8。以下是基本步骤:
1. **更新 yum**:
```sh
sudo yum update -y
```
2. **安装依赖** (如果你的系统还没有包含 EPEL(Extra Packages for Enterprise Linux)仓库,需要先添加它,因为Python 3.8通常不在默认的官方仓库里):
```sh
sudo yum install epel-release -y
```
3. **添加 Python 3.8 的官方镜像仓库** (如果可用):
对于 CentOS Stream 8:
```sh
sudo curl https://rpms.famillecollet.com/keys/RPM-GPG-KEY-collet-public.asc | sudo gpg --dearmor > /etc/pki/rpm-gpg/RPM-GPG-KEY-collet-public
sudo rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-collet-public
sudo yum-config-manager --add-repo https://rpms.famillecollet.com/enterprise/remi/8/x86_64/
```
对于 CentOS 7 或 RHEL 7:
```sh
sudo yum-config-manager --enable rhui-rhel-server-optional-rpms
```
4. **安装 Python 3.8**:
```sh
sudo yum install python38 python38-devel -y
```
5. **验证安装**:
```sh
python3.8 --version
```
6. **设置默认版本** (如果有需求,可以设置Python 3.8为默认版本,但可能会覆盖其他已安装的Python版本):
```sh
alternatives --install /usr/bin/python python /usr/bin/python3.8 30
alternatives --set python python3.8
```
阅读全文