2017-04-18 279 views
0

我已經下載了python-3.6.1.tar.xz。然後我提取它。有一個文件README.rst。這是指令文件。並具有如何安裝的說明。嘗試安裝python時出現錯誤

在Unix,Linux,BSD,MacOS和Cygwin的::

./configure 
make 
make test 
sudo make install 

1日完成兩個步驟,即高達使無任何錯誤。但是當我make test然後得到這些錯誤。

FAILED (failures=1) 
test test_venv failed 
1 test failed again: 
    test_venv 

Total duration: 4 min 13 sec 
Tests result: FAILURE 
Makefile:1018: recipe for target 'test' failed 
make: *** [test] Error 1 

我已經創建了一個帶有錯誤的文件並在googl驅動器中共享它。 Click Here

+0

zlib的不可用,請安裝zlib – RaminNietzsche

回答

4

zipimport.ZipImportError: can't decompress data; zlib not available

您應該安裝zlib1g-dev和改變配置的步驟是這樣的:

./configure --with-zlib=/usr/include 

現在試試這個:

make clean 
apt-get install zlib1g-dev 
./configure --with-zlib=/usr/include 
... 

你可以閱讀更多的Configure and compile Python with Zlib

相關問題