Bootstrap

Python内核编译

编译环境

  1. Windows11,VMware16,Ubuntu20.04,虚拟环境。
  2. PC机,内存32G,CPU 16 核心,I7八代。
  3. Ubuntu20.04 虚拟机。

编译准备

  1. 下载Python源码,https://www.python.org/downloads/source/
  2. 新建python文件夹,解压源码
sudo tar -zxvf Python-3.10.2.tgz

编译源码

  1. 进入源码目录
cd Python-3.10.2
  1. 初始化编译环境
./configure
;