一、Python、pip、setuptools 安裝

來源:互聯網
上載者:User

標籤:

1.Python的安裝

(1)Python,一路next,然後配置環境變數,D:\Python27\;D:\Python27\Scripts;

(2)檢驗安裝正確:cmd, 輸入python,可查看版本號碼;退出互動模式 ctrl+z,

 

2.pip的安裝

(1)將下載檔案解壓縮到d盤

(2)cmd下進入到解壓後的setuptools-0.6c11目錄

(3)執行python setup.py build

(4)步驟三執行後,執行python setup.py install

(5)在pip的解壓縮目錄下,執行python setup.py install 則安裝成功

(6)驗證 cmd 輸入pip

建議:pip與python27 都在D盤

(7)遇到問題:

① 在Python 環境下,使用PiP 命令安裝時,報錯提示: 

UnicodeEncodeError: ‘ascii’ codec can’t encode characters in position 1-5: ordinal not in range(128) 

a.找到路徑\Lib\site-packages 

b.路徑下建立檔案 sitecustomize.py ,檔案內容為:

import sys 

reload(sys)

sys.setdefaultencoding(‘utf-8‘)

c.之後再使用pip 安裝的時候,就解決問題了

 

3.setuptools 安裝

(1)將下載檔案解壓縮到d盤

(2)cmd下進入到解壓後的setuptools-0.6c11目錄

(3)執行python setup.py build

(4)步驟三執行後,執行python setup.py install

(5)在pip的解壓縮目錄下,執行python setup.py install 則安裝成功

建議:setuptools、pip與python27 都在D盤

(6)問題:

① 執行python setup.py install有報錯:

a.確認pip安裝正確

b.在pip目錄下,執行pip install nose或者pip install selenium

② 報錯顯示:UnicodeDecodeError: ‘utf8‘ codec can‘t decode byte 0xc3 in position 7: invalid

ontinuation byte

a.找到路徑\Lib\site-packages 

b.路徑下建立檔案 sitecustomize.py ,檔案內容為:

import sys 

sys.setdefaultencoding(‘gbk‘)

 

一、Python、pip、setuptools 安裝

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.