尝试手动(不是通过 yum/apt-get/brew...)从源代码(http://www.zlib.net/ )安装 zlib可能会有所帮助。
我已经在我的 mac dev 中尝试了 Python3.6.1 构建,也遇到了你的问题。制作后抱怨以下消息。
Python build finished successfully!
The necessary bits to build these optional modules were not found:
... zlib ...
而且我也不能在交互式 shell 中导入 zlib。
>>> import zlib
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'zlib'
我已经通过以下步骤解决了这个问题。
访问http://www.zlib.net/并下载 zlib-1.2.11。
安装 zlib(解压缩、配置、制作、安装)。
重新安装 Python3.6.1 (make clean, make)。
我发现制作过程不再抱怨 zlib 丢失了,我可以在 shell 中成功导入 zlib。
其实,要解决这类问题,我们可能会从源代码中找到一些提示。我们可以在“setup.py”中找到以下代码,注释非常有用。我们可以用调试信息修改代码来定位问题的真正所在(对我来说,这是因为第一个 if 检查由于 zlib.h 丢失而失败)。
# You can upgrade zlib to version 1.1.4 yourself by going to
# http://www.gzip.org/zlib/
zlib_inc = find_file('zlib.h', [], inc_dirs)
have_zlib = False
if zlib_inc is not None:
zlib_h = zlib_inc[0] + '/zlib.h'
version = '"0.0.0"'
version_req = '"1.1.3"'
if host_platform == 'darwin' and is_macosx_sdk_path(zlib_h):
zlib_h = os.path.join(macosx_sdk_root(), zlib_h[1:])
with open(zlib_h) as fp:
while 1:
line = fp.readline()
if not line:
break
if line.startswith('#define ZLIB_VERSION'):
version = line.split()[2]
break
if version >= version_req:
if (self.compiler.find_library_file(lib_dirs, 'z')):
if host_platform == "darwin":
zlib_extra_link_args = ('-Wl,-search_paths_first',)
else:
zlib_extra_link_args = ()
exts.append( Extension('zlib', ['zlibmodule.c'],
libraries = ['z'],
extra_link_args = zlib_extra_link_args))
have_zlib = True
else:
missing.append('zlib')
else:
missing.append('zlib')
else:
missing.append('zlib')