Linux 源碼安裝Python

來源:互聯網
上載者:User

標籤:linux   python源碼安裝   

下載源碼tar包

:https://www.python.org/downloads/

我這裡下載的 Python-2.7.11.tgz

# tar -zxvf Python-2.7.11.tgz


進入解壓縮後的檔案夾


# cd Python-2.7.11

  在編譯前先在/usr/local建一個檔案夾python2(作為python的安裝路徑,以免覆蓋老的版本)


# mkdir /usr/local/python2

  開始編譯安裝

# ./configure --prefix=/usr/local/python2# make# make install

  

移動之前的版本

# mv /usr/bin/python /usr/bin/python_old

 

再建立新版本python的連結

ln -s /usr/local/python2/bin/python /usr/bin/python

  

這個時候輸入

# pythonPython 2.7.11 (default, Feb 19 2016, 18:01:00) [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] on linux2Type "help", "copyright", "credits" or "license" for more information.>>>


完成


由於安裝了新版的Python對yum 使用受到影響,情況如下

# yum grouplistThere was a problem importing one of the Python modulesrequired to run yum. The error leading to this problem was:   No module named yumPlease install a package which provides this module, orverify that the module is installed correctly.It‘s possible that the above module doesn‘t match thecurrent version of Python, which is:2.7.11 (default, Feb 19 2016, 18:01:00) [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)]If you cannot solve this problem yourself, please go to the yum faq at:  http://yum.baseurl.org/wiki/Faq

意思是python版本不匹配,我們修改yum為老版本python就是了


查看原python位置

# whereis pythonpython: /usr/bin/python2.7 /usr/bin/python /usr/lib/python2.7 /usr/lib64/python2.7 /usr/include/python2.7 /usr/share/man/man1/python.1.gz
# vim /usr/bin/yum

修改第一行 #!/usr/bin/python#!/usr/bin/python2.7


ok.完成

本文出自 “Home_Tang” 部落格,請務必保留此出處http://yagetang.blog.51cto.com/1780698/1743501

Linux 源碼安裝Python

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.