ubuntu 编译 CPython 源码
CPython 是 Python 的一个官方实现, 其他实现有 PyPy, Cython 和 Jython获取 CPython 源码git clone --branch 3.9 https://github.com/python/cpythoncd cpython也可以手动下载压缩包源代码目录结构.├── Doc├── Grammar├── Include├── Lib# Python 编写的标准
·
CPython 是 Python 的一个官方实现, 其他实现有 PyPy, Cython 和 Jython
获取 CPython 源码
git clone --branch 3.9 https://github.com/python/cpython
cd cpython
也可以手动下载压缩包
源代码目录结构
.
├── Doc
├── Grammar
├── Include
├── Lib # Python 编写的标准模块
├── m4
├── Mac
├── Misc
├── Modules # C 编写的标准模块
├── Objects
├── Parser
├── PC
├── PCbuild
├── Programs
├── Python
└── Tools
15 directories
Python 源码包含 65% 的 Python 代码(大部分是单元测试)以及 24% 的 C 代码, 剩下的是其他语言的代码
准备工作
# 安装编译工具
sudo apt install build-essential
# 安装依赖库
sudo apt install libssl-dev zlib1g-dev libncurses5-dev libncursesw5-dev libreadline-dev libsqlite3-dev libgdbm-dev libdb5.3-dev libbz2-dev libexpat1-dev liblzma-dev libffi-dev
编译源码
# 检查编译环境, 生成 Makefile
./cnfigure
# 使用 2 个线程同时编译
make -j2
编译结果:
此时编译好的 Python 还只是在源代码目录, 如果要在系统使用该 Python 解释器, 还需安装至系统目录
sudo make install
更多推荐
已为社区贡献1条内容
所有评论(0)