gpt4 book ai didi

python-3.x - 我在哪里可以找到 ./configure 来运行命令 ./configure –with-zlib=/usr/include in python 3.2

转载 作者:行者123 更新时间:2023-12-04 06:11:21 25 4
gpt4 key购买 nike

基于此 zlib-install-on-python ,我需要运行以下命令

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

问题:我在哪里可以找到 python 3.2 中的配置?

user@ubuntu:~$ ls /usr/include/z* /usr/include/zconf.h /usr/include/zlibdefs.h /usr/include/zlib.h


user@ubuntu:~/Downloads/Python-3.2$ ./configure –with-zlib=/usr/include
configure: error: invalid variable name: `–with-zlib'

最佳答案

你需要运行 ./configure在你的python安装目录中。这是您解压源 tarball 的位置。

cd /path/to/python3.2
./configure --with-zlib=/usr/include

请注意 --with-zlib参数以两个破折号为前缀,而不是一个。

编辑:
来自 ./configure -h ,

--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]



尝试后 ./configure --with-zlib=yes ,这也会产生错误,我认为 PACKAGE可能是非标准包。但是,要解决您的问题(确保 python 具有 zlib),您应该能够执行 ./configure; make; sudo make install .你表明你有 zlib.h ,所以这应该重新安装python并支持zlib。我会看看是否可以在 --with-PACKAGE 上找到更多信息选项,但这应该可以解决根本问题。

关于python-3.x - 我在哪里可以找到 ./configure 来运行命令 ./configure –with-zlib=/usr/include in python 3.2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7731545/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com