Kylin Server V10 下编译安装 Python
查看操作系统信息
[root@nacos1 ~]# cat /etc/.kyinfo
[dist]
name=Kylin
milestone=Server-V10-GFB-Release-ZF9_01-2204-Build03
arch=arm64
beta=False
time=2023-01-09 11:04:36
dist_id=Kylin-Server-V10-GFB-Release-ZF9_01-2204-Build03-arm64-2023-01-09 11:04:36
[servicekey]
key=0080176
[os]
to=
term=2024-05-16
下载软件包
[root@localhost src]# wget https://www.python.org/ftp/python/3.13.0/Python-3.13.0.tar.xz
解压软件包
[root@localhost src]# tar -xvf Python-3.13.0.tar.xz
查看目录中的内容
[root@localhost src]# cd Python-3.13.0/
[root@localhost Python-3.13.0]# ls
aclocal.m4 config.status Doc InternalDocs Mac Misc PC pyconfig.h.in
Android config.sub Grammar iOS Makefile Modules PCbuild Python
config.guess configure Include Lib Makefile.pre Objects Programs README.rst
config.log configure.ac install-sh LICENSE Makefile.pre.in Parser pyconfig.h Tools
编译
[root@localhost Python-3.13.0]# ./configure --prefix=/usr/local/Python3 --enable-optimizations
checking build system type... aarch64-unkno