这是(shì)python-3.4.3.msi下载(zǎi), 官方发布于(yú)2015-02-25。我用(yòng)到(dào)的是ubuntu16.04 系(xì)统自(zì)带python3.5.2,由于我的(de)开发板(bǎn)使(shǐ)用的版本为3.4.3,所以我要(yào)将我的计算(suàn)机安装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
我(wǒ)使用(yòng)的是我开(kāi)发板编辑(jí)工具buildroot下(xià)载(zǎi)的源码,Python-3.4.3.tar.xz
2、解(jiě)压(yā)
tar xvf Python-3.4.3.tar.xz
将自(zì)动解(jiě)压到当(dāng)前目录下(xià)
3、配置、编译、安(ān)装
进入解压后的目录
配置(zhì):./configure
编译(yì):make
安装:sudo make install
4、设置链接,启动python自动启(qǐ)动(dòng)python3.4.3
sudo ln -s /usr/local/bin/python3.4 /usr/local/bin/python
以后启(qǐ)动python就是python3.4.3
