Linux-python环境编译
Posted Hedger_Lee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux-python环境编译相关的知识,希望对你有一定的参考价值。
编译
- 优点:可以自定义功能
- 缺点:安装比较耗时
yum install zlib-devel
wget https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tar.xz
tar xf Python-3.6.8.tar.xz
cd Python-3.6.8
./configure --prefix=/opt/python36 检查环节预处理
make 释放makefile文件
make install 安装
错误整理
configure: error: in `/root/test/Python-3.6.8‘:
configure: error: no acceptable C compiler found in $PATH
yum install gcc
添加环节变量
vim /etc/profile.d/python.sh
PATH=$PATH:/opt/python36/bin
以上是关于Linux-python环境编译的主要内容,如果未能解决你的问题,请参考以下文章