pythongcc安裝
『壹』 詳解如何在 linux 中安裝最新的 python 3.6 版本
在這篇文章中,我將展示如何在 CentOS/RHEL 7、Debian 以及它的衍生版本比如 Ubuntu(最新的 Ubuntu 16.04 LTS 版本已經安裝了最新的 Python 版本)或 Linux Mint 上安裝和使用 Python 3.x 。我們的重點是安裝可用於命令行的核心語言工具。
然後,我們也會闡述如何安裝 Python IDLE - 一個基於 GUI 的工具,它允許我們運行 Python 代碼和創建獨立函數。
在 Linux 中安裝 Python 3.6
在我寫這篇文章的時候(2017 年三月中旬),在 CentOS 和 Debian 8 中可用的最新 Python 版本分別是 Python 3.4 和 Python 3.5 。
雖然我們可以使用 yum 和 aptitude(或 apt-get)安裝核心安裝包以及它們的依賴,但在這兒,我將闡述如何使用源代碼進行安裝。
為什麼?理由很簡單:這樣我們能夠獲取語言的最新的穩定發行版(3.6),並且提供了一種和 Linux 版本無關的安裝方法。
在 CentOS 7 中安裝 Python 之前,請確保系統中已經有了所有必要的開發依賴:
# yum -y groupinstall development
# yum -y install zlib-devel
在 Debian 中,我們需要安裝 gcc、make 和 zlib 壓縮/解壓縮庫:
# aptitude -y install gcc make zlib1g-dev
運行下面的命令來安裝 Python 3.6:
# wget
# tar xJf Python-3.6.0.tar.xz
# cd Python-3.6.0
# ./configure
# make && make install
現在,放鬆一下,或者餓的話去吃個三明治,因為這可能需要花費一些時間。安裝完成以後,使用 which 命令來查看主要二進制代碼的位置:
# which python3
# python3 -V
上面的命令的輸出應該和這相似:
要退出 Python 提示符,只需輸入:
quit()
#或
exit()
然後按回車鍵。
恭喜!Python 3.6 已經安裝在你的系統上了。
在 Linux 中安裝 Python IDLE
Python IDLE 是一個基於 GUI 的 Python 工具。如果你想安裝 Python IDLE,請安裝叫做 idle(Debian)或 python-tools(CentOS)的包:
# apt-get install idle [On Debian]
# yum install python-tools [On CentOS]
輸入下面的命令啟動 Python IDLE:
# idle
總結
在這篇文章中,我們闡述了如何從源代碼安裝最新的 Python 穩定版本。
最後但不是不重要,如果你之前使用 Python 2,那麼你可能需要看一下 從 Python 2 遷移到 Python 3 的官方文檔。這是一個可以讀入 Python 2 代碼,然後轉化為有效的 Python 3 代碼的程序。
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
『貳』 如何在git gui中安裝Python或者gcc-CSDN論壇
git是做版本控制的,你可以用git clone url的命令把源代碼下載下來,然後自行編譯
『叄』 linux 系統更新python後 yum不能用,重安裝python2.4報錯,缺gcc, 又不能用yum安裝
不需要重新安裝的,python 更新後確實yum 不能使用了。
打開/usr/bin/yum 吧第一行修改為 #!/usr/bin/python2.4,輕松解決啊
『肆』 虛擬機怎麼安裝python gcc
不需要重新安裝的,python 更新後確實yum 不能使用了。 打開/usr/bin/yum 吧第一行修改為 #!/usr/bin/python2.4,輕松解決啊
『伍』 編譯安裝python需要哪些依賴
依賴庫:
//使用apt 安裝即可
1.gcc, make, zlib1g-dev(壓縮/解壓縮庫)
安裝過程需要的庫。
2.libbz2-dev
bz2支持庫,若在編譯安裝python前沒有安裝,將無法通過pip install 安裝提供bz2格式的第三方庫,會出現unsupported archive format: .tar.bz2的錯誤,例如爬蟲庫Scrapy依賴的Twisted。
3.libsqlite3-dev
sqlite3支持庫,若在編譯安裝python前沒有安裝,則python中會缺失sqlite3模塊,當引入sqlite3或使用依賴sqllite3的第三方庫(例如Scrapy)時,會出現ImportError: No mol named _sqllite3的錯誤。
//以上為編譯安裝前需要安裝的庫,可能不夠全面,會不斷補充。
4.其他:安裝第三方庫需要的庫
python3-dev, libxml2-dev, libxslt1, libffi-dev, libssl-dev等,在安裝第三方庫會有具體說明,不做過多解釋。
安裝:
//通過wget獲取壓縮包,這里選擇3.6.1版
wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz
//解壓
tar xJf Python-3.6.1.tar.xz
cd Python-3.6.1
./configure
make
/*這步如果需要sudo,請使用sudo -H命令,即sudo -H make install,避免pip等模塊安裝失敗。
錯誤示例(pip安裝失敗):The directory '/home/ls/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
*/
make install
『陸』 我的puppy 安裝好了gcc 但是編譯.C文件提示找不到頭文件,/usr/include下只有python的兩個頭文件,如何能編
你需要下載預編譯好的,因為puppy跟一般的linux不一樣,可能沒有帶開發環境,你需要 自己安裝開發環境的。
『柒』 python2.5怎麼安裝
Python2.5的安裝方法:1.下載源代碼 http://www.python.org/ftp/python/2.5.2/Python-2.5.2.tar.bz22. 安裝 $ tar –jxvf Python-2.5.2.tar.bz2 $ cd Python-2.5.2 $ ./configure $ make $ make install3. 測試 在命令行下輸入python,出現python解釋器即表示已經正確安裝。在suse10或rhel5(es5)下系統默認已經裝了python但版本是2.4.x;本次安裝後在shell中輸入 #python 會發現顯示結果: # python Python 2.4.3 (#1, Dec 11 2006, 11:38:52) [GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2 Type "help", "right", "credits" or "license" for more information. >>> 版本還是2.4.x的 解決辦法: #cd /usr/bin #ll |grep python //查看該目錄下python #rm -rf python #ln -s PREFIX/Python-2.5.2/python ./python //PREFIX為你解壓python的目錄 #python # python Python 2.5.2 (#1, Dec 11 2006, 11:38:52) [GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2 Type "help", "right", "credits" or "license" for more information. >>> OK!問題解決!文章出處: http://www.diybl.com/course/6_system/linux/Linuxjs/2008831/139078.html
『捌』 如何在linux上安裝python
一般linux系統都自帶python2,你是要裝python3?
給你centos下源碼安裝py3 的例子把。
如果已經安裝好了python34
sudo yum remove python34
編譯安裝
python官網只為Linux提供了源碼,因此我下載python3.6.1的源碼壓縮包
第一步,CentOS裝好openssl靜態庫
鍵入以下命令: yum install -y openssl-static
若未裝該靜態庫會導致python3自帶的pip3安裝失敗
第二步,編譯python3源碼
0. CentOS安裝GCC和wget yum install -y gcc,wget
yum groupinstall "Development tools"
yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel
1. 先解壓python3的源碼包 wget http://python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz
tar xf Python-3.6.1.tar.xz
2. 配置安裝路徑 cd Python-3.6.1 //進入python3源碼解壓後的文件夾
./configure --prefix=/usr/local/python3 //默認配置文件並設置安裝路徑
3. 編譯python3源碼 make
4. 安裝 make install
最終若無錯誤提示,說明安裝成功
5. 添加文件鏈接 安裝後鍵入命令?python3?提示不存在該命令,這是因為我們自定義了安裝目錄,因此需要添加文件鏈接,命令如下:
ln -s /usr/local/python3/bin/python3 /usr/bin/python3
6. 測試 鍵入命令:
python3 -V
會輸出python3版本信息,說明python3安裝完成
ln -s /usr/local/python3/bin/pip3 /usr/bin/pip3