Ubuntu安装Python2.7.6

Ubuntu安装Python2.7.6

工作电脑的Ubuntu12.04系统里面默认装的是Python2.7.3的版本,而IDFv3.2编译不兼容Python2.7.3,需要升级python版本。

一、切换到/usr目录

     #su root
     #cd /usr

二、下载Python的软件包

     #wget http://www.python.org/ftp/python/2.7.6/Python-2.7.6.tar.xz

三、解压

     #xz -d Python-2.7.6.tar.xz
     #tar xvf Python-2.7.6.tar
     #tar xvf Python-2.7.6.tar

四、编译并安装

     #./configure
     #make & make install

你可能感兴趣的:(linux,ubuntu,python,IDF,espressif)