2015-10-02 101 views
12

我一直在嘗試在我的Mac上安裝模塊枕頭(運行El Capitan和python 3.5的全新安裝)一段時間。使用pip3安裝枕頭,我得到一個錯誤,說zlib沒有找到,然後導致安裝中止。我已經安裝了Xcode,所以理論上已經安裝了zlib,並且當我用brew pip安裝它時仍然無法工作(所以我卸載了)。它工作正常,直到它到達這裏:在Mac上安裝枕頭時出現Zlib錯誤

writing Pillow.egg-info/PKG-INFO 
writing dependency_links to Pillow.egg-info/dependency_links.txt 
writing top-level names to Pillow.egg-info/top_level.txt 
warning: manifest_maker: standard file '-c' not found 

reading manifest file 'Pillow.egg-info/SOURCES.txt' 
reading manifest template 'MANIFEST.in' 
writing manifest file 'Pillow.egg-info/SOURCES.txt' 
copying PIL/OleFileIO-README.md -> build/lib.macosx-10.6-intel-3.5/PIL 
running build_ext 
Traceback (most recent call last): 
    File "<string>", line 1, in <module> 
    File "/private/tmp/pip-build-1yfcb2pj/Pillow/setup.py", line 767, in <module> 
    zip_safe=not debug_build(), 
    File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/distutils/core.py", line 148, in setup 
    dist.run_commands() 
    File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/distutils/dist.py", line 955, in run_commands 
    self.run_command(cmd) 
    File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/distutils/dist.py", line 974, in run_command 
    cmd_obj.run() 
    File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/setuptools-18.3.2-py3.5.egg/setuptools/command/install.py", line 61, in run 
    File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/distutils/command/install.py", line 539, in run 
    self.run_command('build') 
    File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/distutils/cmd.py", line 313, in run_command 
    self.distribution.run_command(command) 
    File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/distutils/dist.py", line 974, in run_command 
    cmd_obj.run() 
    File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/distutils/command/build.py", line 135, in run 
    self.run_command(cmd_name) 
    File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/distutils/cmd.py", line 313, in run_command 
    self.distribution.run_command(command) 
    File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/distutils/dist.py", line 974, in run_command 
    cmd_obj.run() 
    File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/distutils/command/build_ext.py", line 338, in run 
    self.build_extensions() 
    File "/private/tmp/pip-build-1yfcb2pj/Pillow/setup.py", line 515, in build_extensions 
    % (f, f)) 
ValueError: --enable-zlib requested but zlib not found, aborting. 

---------------------------------------- 
Command  "/Library/Frameworks/Python.framework/Versions/3.5/bin/python3.5 -c "import setuptools, tokenize;__file__='/private/tmp/pip-build-1yfcb2pj/Pillow/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-oxzqi2c0-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /private/tmp/pip-build-1yfcb2pj/Pillow 

任何想法爲什麼它錯誤,我怎麼能解決它?

回答

19

運行

$ xcode-select --install 

似乎已經解決了這個問題對我來說。

+0

也適用於男士,非常感謝:) –

+0

幫助我解決了el capitan問題 - 但爲什麼,xcode-select是什麼? – Lonoshea

+0

xcode-select管理Xcode和BSD工具的活動開發者目錄。 --install將打開一個用戶界面對話框來請求自動安裝命令行開發人員工具。 – kayluhb

相關問題