如何使用源文件将Python安装到自定义目录

发布于 2024-10-04 19:49:44 字数 121 浏览 1 评论 0原文

我想在 Redhat 服务器已预安装的 Python 之外再构建 Python 2.7.1。

我需要修改/使用哪些选项才能在 ie /opt/Python27 下构建 Python

我将不胜感激!

I want to build Python 2.7.1 additionally to the one the redhat server already has pre-installed.

What options do I need to modify/use so that Python can be built under i.e. /opt/Python27

I would appreciate any help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无可置疑 2024-10-11 19:49:44

配置:

./configure --prefix=/opt/Python27

一般来说,您只需执行 ./configure --help 即可获取所有选项的列表允许为该配置脚本进行设置。

Configure with:

./configure --prefix=/opt/Python27

In general, you can just do ./configure --help to get a list of all the options you're allowed to set for that configure script.

苏大泽ㄣ 2024-10-11 19:49:44

您还需要传递 --enable-shared 来配置,因为它是 Python 的附加安装。

You also want to pass --enable-shared to configure since it is an additional installation of Python.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文