Products
GG网络技术分享 2025-11-10 22:58 2
python
sudo yum update sudo yum install gcc openssl-devel bzip2-devel libffi-devel

wget https://www.python.org/ftp/python/3.9.1/Python-3.9.1.tgz tar xzf Python-3.9.1.tgz cd Python-3.9.1 ./configure --enable-optimizations make altinstall
/opt/python3.9/bin/python3.9 -V
/opt/python3.9/bin/python3.9 -m venv myprojectenv
source myprojectenv/bin/activate
pip install requests
sudo alternatives --install /usr/bin/python python /opt/python3.9/bin/python3.9 10
python --version
Demand feedback