這是python-3.4.3.msi下載, 官方發(fā)布于2015-02-25。我用到的是ubuntu16.04 系統(tǒng)自帶python3.5.2,由于我的開發(fā)板使用的版本為3.4.3,所以我要將我的計算機安裝python3.4.3版本。
python-3.4.3.msiWindows X86-64 MSI Installer (Windows AMD64 / Intel 64 / X86-64 binary [1] -- does not include source)。
PEP 435, a standardized "enum" module
PEP 442, improved semantics for object finalization
PEP 443, adding single-dispatch generic functions to the standard library
PEP 445, a new C API for implementing custom memory allocators
PEP 446, changing file descriptors to not be inherited by default in subprocesses
1、下載python3.4.3
我使用的是我開發(fā)板編輯工具buildroot下載的源碼,Python-3.4.3.tar.xz
2、解壓
tar xvf Python-3.4.3.tar.xz
將自動解壓到當前目錄下
3、配置、編譯、安裝
進入解壓后的目錄
配置:./configure
編譯:make
安裝:sudo make install
4、設(shè)置鏈接,啟動python自動啟動python3.4.3
sudo ln -s /usr/local/bin/python3.4 /usr/local/bin/python
以后啟動python就是python3.4.3