macOS 下使用 pyenv 编译并使用 Python 3.7 或更新版本

栏目: Python · 发布时间: 6年前

内容简介:因为不同的项目可能用不同的 Python 版本,于是我用 pyenv 来进行 Python 的多版本管理,而不是用系统自带的 Python 或 homebrew 的 Python。然而在用 pyenv 编译对应的 Python 版本时,可能会遇到如下错误:或者

因为不同的项目可能用不同的 Python 版本,于是我用 pyenv 来进行 Python 的多版本管理,而不是用系统自带的 Python 或 homebrew 的 Python。

然而在用 pyenv 编译对应的 Python 版本时,可能会遇到如下错误:

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

或者

WARNING: The Python sqlite3 extension was not compiled. Missing the SQLite3 lib?

这时你需要检查一下 zlib 或 sqlite 3 是不是已经安装,但即使已经通过 homebrew 安装了以上 Package,依然会出现这些错误。这是因为 pyenv 无法找到 homebrew 安装的库的路径,需要手动指定:

export LDFLAGS="-L/usr/local/opt/zlib/lib -L/usr/local/opt/sqlite/lib"
export CPPFLAGS="-I/usr/local/opt/zlib/include -I/usr/local/opt/sqlite/include"

这样,zlib 的问题和 Sqlite3 的问题都会解决了。

你也可能会遇到其他问题:比如 OpenSSL,解决方式是类似的,可以看: https://github.com/pyenv/pyenv/wiki/common-build-problems


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Distributed Algorithms

Distributed Algorithms

Nancy A. Lynch / Morgan Kaufmann / 1996-3-15 / USD 155.00

In "Distributed Algorithms", Nancy Lynch provides a blueprint for designing, implementing, and analyzing distributed algorithms. She directs her book at a wide audience, including students, programmer......一起来看看 《Distributed Algorithms》 这本书的介绍吧!

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具