如何使用源文件将Python安装到自定义目录
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
配置:
./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.您还需要传递 --enable-shared 来配置,因为它是 Python 的附加安装。
You also want to pass --enable-shared to configure since it is an additional installation of Python.