溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python版本選擇

發(fā)布時(shí)間:2020-07-23 12:25:32 來(lái)源:網(wǎng)絡(luò) 閱讀:1066 作者:魏文弟 欄目:編程語(yǔ)言
Python版本選擇
  • Python2.x是遺產(chǎn),Python3.x是現(xiàn)在和未來(lái)的語(yǔ)言。
  • Python2.x默認(rèn)編碼為ASSIC碼,不支持中文。
  • Python3.x默認(rèn)編碼為UNICODE,默認(rèn)支持中文。
    Python3對(duì)比Python2
  • 默認(rèn)支持中文。
  • 不兼容Python2.x。
  • 核心語(yǔ)法調(diào)整,更易學(xué)習(xí)。
  • 新特性默認(rèn)只在Python3.x上有。
安裝

本安裝以CentOS7為例

[root@wt-test-3 python]# cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)

CentOS7中默認(rèn)安裝的是Python2.7.5版本,YUM源中提供的也是Python2.7.5版本,可以通過(guò)以下命令查看:

[root@wt-test-3 python]# python --version
Python 2.7.5
[root@wt-test-3 python]# yum info python
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.bit.edu.cn
 * extras: mirrors.tuna.tsinghua.edu.cn
 * updates: mirror.bit.edu.cn
Installed Packages
Name        : python
Arch        : x86_64
Version     : 2.7.5
Release     : 68.el7
Size        : 79 k
Repo        : installed
Summary     : An interpreted, interactive, object-oriented programming language
URL         : http://www.python.org/
License     : Python

想要使用Python3.x版本,需要我們手動(dòng)安裝,以下是我編譯安裝Python3.7的記錄(目前最新版本),供大家參考:

  1. 下載Python3.7安裝包
    [root@wt-test-3 software]# wget https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tgz
  2. 解壓下載后的安裝包,并編譯安裝

    [root@wt-test-2 software]# tar zxf Python-3.7.0.tgz
    [root@wt-test-2 software]# cd Python-3.7.0
    [root@wt-test-2 software]# ./configure --prefix=/opt/python37 --enable-optimizations
    [root@wt-test-2 software]# make -j 4
    [root@wt-test-2 software]# make install

    --enable-optimizations 選項(xiàng)啟用PGO(Profile-Guided Optimizations,檔案導(dǎo)引優(yōu)化)和LTO(Link-Time and optimized)優(yōu)化,性能提升約10%-20%,但會(huì)增加編譯時(shí)間。PGO、LTO的詳細(xì)信息可參考 [https://gcc.gnu.org/onlinedocs/gccint/LTO-Overview.html]()

  3. 如果安裝過(guò)程中出現(xiàn):
    Python build finished successfully!
    The necessary bits to build these optional modules were not found:
    _bz2                  _curses               _curses_panel      
    _dbm                  _gdbm                 _hashlib           
    _lzma                 _sqlite3              _ssl               
    _tkinter              _uuid                 readline      

    可以安裝缺少的依賴包,然后刪除編譯目錄重新執(zhí)行編譯安裝步驟。

    [root@wt-test-2 software]# yum -y install gcc-c++ openssl-devel \
                           zlib-devel libffi-devel readline-devel  \
                           bzip2-devel ncurses-devel sqlite-devel \
                           gdbm-devel xz-devel tk-devel libuuid-devel 
  4. 安裝完成后,設(shè)置環(huán)境變量
    [root@wt-test-2 software]# echo 'export PATH=$PATH:/opt/python37/bin' >> /etc/profile
    [root@wt-test-2 software]# source /etc/profile
  5. 驗(yàn)證是否安裝成功
    [root@wt-test-2 software]# python3 --version
    Python 3.7.0
向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI