在debian上编译python3.9很简单:
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libsqlite3-dev libreadline-dev libffi-dev curl libbz2-dev
wget https://www.python.org/ftp/python/3.9.1/Python-3.9.1.tgz
tar -xf Python-3.9.1.tgz
cd Python-3.9.1
./configure --enable-optimizations
#nproc value is 4 in my pc platform
make -j 4
sudo make altinstall
如何编译python3.9并安装在openwrt上?
root@OpenWrt:~# cat /etc/banner
_______ ________ __
| |.-----.-----.-----.| | | |.----.| |_
| - || _ | -__| || | | || _|| _|
|_______|| __|_____|__|__||________||__| |____|
|__| W I R E L E S S F R E E D O M
-----------------------------------------------------
OpenWrt 19.07.7, r11306-c4a6851c72
-----------------------------------------------------
root@OpenWrt:~# uname -a
Linux OpenWrt 4.14.221 #0 SMP Mon Feb 15 15:22:37 2021 x86_64 GNU/Linux
root@OpenWrt:~# python3
Python 3.7.10 (default, May 28 2021, 13:26:31)
[GCC 7.5.0] on linux
有些软件需要Python 3.8或更高版本,我想编译python3.9。
答案1
下载您所针对的 OpenWRT 版本的 SDK,修改 Python 的 Makefile,并使用 SDK 编译 Python。
您可以在此处查看一些设置说明:https://openwrt.org/docs/guide-developer/using_the_sdk
安装 SDK 后,修改 python3 的 Makefile(以下是合并到将 python 更新到 3.9.5 的 PR 示例:https://github.com/openwrt/packages/pull/15586/commits/e312275dd9c25c4032b4d2d3623b042905c8bf16)
然后您应该能够使用类似 的命令来编译该包,这将在SDK 的文件夹make package/python3/compile V=sc
中生成可安装的 IPK 。bin