centos7 python3
时间: 2023-08-16 08:07:29 浏览: 153
Centos7-python3.6.8-离线rpm包
5星 · 资源好评率100%
CentOS 7 does not come with Python 3 pre-installed. However, you can easily install Python 3 on CentOS 7 using the following steps:
1. Update the package list:
```
sudo yum update
```
2. Install the EPEL (Extra Packages for Enterprise Linux) repository:
```
sudo yum install epel-release
```
3. Install Python 3 and pip:
```
sudo yum install python3
```
After following these steps, you should have Python 3 installed on your CentOS 7 system. You can verify the installation by running the following command:
```
python3 --version
```
This should display the version of Python 3 that is installed on your system.
阅读全文