听起来您需要为zlib安装devel软件包,可能想要做类似的事情
sudo apt-get installzlib1g-dev(我不使用ubuntu,因此您需要仔细检查该软件包)。除了使用python-
brew之外,您可能还想考虑仅手动编译,这并不难。只要下载源,和
configure,
make,
makeinstall。您至少需要将其设置
--prefix为某个位置,以便将其安装在所需的位置。
./configure --prefix=/opt/python2.7 + other optionsmakemake install
您可以通过执行以下 *** 作检查哪些配置选项可用,
./configure --help并查看系统python的编译方式:
python -c "import sysconfig; print sysconfig.get_config_var('CONFIG_ARGS')"
关键是要确保你已经安装了您的系统的开发包,这样Python就可以建立
zlib,
sqlite3等模块。python文档更详细地介绍了构建过程:http : //docs.python.org/using/unix.html#building-
python。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)