gpt4 book ai didi

python - 红帽 |如何编译 64 位 Python 2.6

转载 作者:太空宇宙 更新时间:2023-11-03 19:37:42 27 4
gpt4 key购买 nike

我正在尝试编译 64 位的 Python 2.6,我尝试了各种编译命令,但不确定这些命令是否正确

./configure --with-universal-archs=32-bit --prefix="$HOME/python"
make
make install

正确的语法是什么...?

最佳答案

到底什么不起作用?您收到任何错误消息吗?

尝试简单编译而不先安装:

$ cd path/to/python/source
$ ./configure
$ make all
... wait for some time ...
$ make test # this runs python's test suite, you can usually skip this
$ ./python # note the ./ runs the just installed python instead of system's python
$ # note: do not run make install yet, or you will override system's python, see below

另外,请确保您已安装 make(GNU Make 或其他)。

你从哪里得到的来源?如果您直接从存储库获取它,则源代码可能已损坏,或者您可能需要重新运行 autotool。

测试编译确实有效后,您可以:

$ cd path/to/python/source/
$ ./configure --prefix=/where/you/want/to/install/it
$ make all
... wait for some time ...
$ make test # this runs python's test suite, you can usually skip this
$ make install

关于python - 红帽 |如何编译 64 位 Python 2.6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2637166/

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