一、软件包分类
source:源码,需要编译之后才可以使用
源码包优点:开源,可以修改源码,可以自由切换功能,软件是通过编译安装的,稳定,效率高
源码包缺点:安装步骤多,容易出现安装时间长,由于是编译安装,安装报错难以解决。
配置./configure-prefiex=/usr/local/python
make
make install
二、源码安装python
1、将软件包拖入虚拟机
2、进行解压
[root@localhost ~]# tar -zxvf Python-3.12.4.tgz
[root@localhost ~]# ls
anaconda-ks.cfg jdk-22_linux-x64_bin.tar.gz Python-3.12.4.tgz tom
apache-tomcat-10.1.25.tar.gz Python-3.12.4 todolist.jar
3、进行安装编译
[root@localhost ~]# cd Python-3.12.4
[root@localhost Python-3.12.4]# ./configure prefix=/usr/local/python3124 //配置编译文件 prefiex--前置 =/usr/local--位置 python3124文件名
[root@localhost Python-3.12.4]# make
make:***没有指明目标并且找不到makefile。停止 解决措施
解决办法:缺少gcc依赖包因此需要下载gcc依赖包
[root@localhost Python-3.12.4]