一、Linux 编译安装Python3.12.5
python官网地址:Welcome to Python.org
1.1 安装python环境
1.1.1安装开发工具包和依赖
# yum -y groupinstall "Development Tools"
# yum -y install gcc zlib zlib-devel libffi libffi-devel readline-devel openssl-devel openssl11 openssl11-devel sqlite-devel
1.1.2配置OpenSSL 11环境变量
# vim /etc/profile.d/openssl11.sh 添加
export CFLAGS=$(pkg-config --cflags openssl11)
export LDFLAGS=$(pkg-config --libs openssl11)
# source /etc/profile
1.2 下载python安装包
wget https://www.python.org/ftp/python/3.12.5/Python-3.12.5.tar.tgz
1.3 解压编译安装
解压python安装包
tar -xf Python-3.12.5.tar.tgz -C /usr/local
编译安装
cd /usr/local/Python-3.12.5
./configure --enable-shared --prefix=/usr/local/python312
make -j 2 && make install # make -j 2指定2核cpu执行编译过程,会提高编译速度。
1.5 测试python
# python3
Python 3.12.5 (main, Aug 21 2024, 10:52:32) [GCC 4.8.5 20150623 (Red Hat 4.8.5-44)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> print('qf')
qf
>>> exit()
输入 exit()
即可退出 python3
1.6 测试pip3
[root@python ~]# pip3 -V
pip 24.2 from /usr/local/python312/lib/python3.12/site-packages/pip (python 3.12)
1.6.1 配置pip3其他国内源
配置pip使用国内源
# Linux下使用
mkdir ~/.pip
vi ~/.pip/pip.conf
写入如下内容:
[global]
timeout = 6000
index-url=https://mirrors.aliyun.com/pypi/simple
豆瓣源: https://pypi.douban.com/simple/
阿里源: https://mirrors.aliyun.com/pypi/simple
清华: https://pypi.tuna.tsinghua.edu.cn/simple
阿里云: http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学: http://pypi.hustunique.com/
山东理工大学: http://pypi.sdutlinux.org/
二、Windows 11安装Python3和pip3
2.1 下载windows版本的python3软件包
2.2 安装python3
下载好安装包后双击安装出现下面的安装步骤:选择自定义安装,和自动添加到path环境变量中。
如果勾选环境变量,安装成功后,会自动添加到环境变量中,如下图
如果忘记勾选,手动配置环境变量,一定记得要配置到系统环境变量中,才可用!!