关于在新RHEL系统中使用源码安装python
注:如果你的系统来自服务器厂商魔改的则不需要安装依赖,直接从第二步开始
1.安装依赖
1 | yum -y install gcc |
如果你安装的不是python3.11,可以使用以下依赖
- 这是编译python时必须要用的,否则安装后的python无法import ssl也无法安装第三方库
1 | yum -y install epel-release.noarch |
如果你安装的是python3.11,可以使用以下依赖
1 | yum -y install epel-release.noarch |
2.解压你下载或上传的python压缩包
1 | tar -zxvf Python.gz |
3.cd 进入解压后的python包
- 配置编译,使用该目录下的configure文件编译
1
./configure
4.使用make编译python
1 | make && make install |
5.建立python的软链接
1 | ln -s /usr/local/bin/python3.x /usr/local/bin/python |
题外话
- 使用rm的-rf删除软链接
1
rm -rf /usr/local/bin/python
- 创建文件夹
1
mkdir name
- 本文作者: Li Zhan Qi
- 本文链接: https://lzq-hopego.github.io/2023/03/11/在RHEL系统中使用源码安装python/
- 版权声明: 本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!