无法使用python2.6在centos(fc10)下编译uwsgi

发布于 2024-08-27 13:38:16 字数 300 浏览 13 评论 0原文

它通常使用 python 2.5 构建,但我需要 2.6! 2.6 通常安装在 /opt/python26 中并在控制台中作为 python2.6 成功运行。

python2.6 uwsgiconfig.py --build

请给我

*** uWSGI linking ***
/usr/bin/ld: cannot find -lpython2.6
collect2: ld returned 1 exit status

帮助!

it`s normally build with python 2.5 BUT i need 2.6!
2.6 normally installed in /opt/python26 and successfully run as python2.6 in console.

but

python2.6 uwsgiconfig.py --build

give me

*** uWSGI linking ***
/usr/bin/ld: cannot find -lpython2.6
collect2: ld returned 1 exit status

HELP!

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

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

发布评论

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

评论(2

葬心 2024-09-03 13:38:16

尝试:

LD_LIBRARY_PATH="/somepath/" python2.6 uwsgiconfig.py --build

其中 somepathlibpython2.6.so.x 文件的路径。

分别更新您的 /etc/ld.so.conf 文件并添加库的路径并运行 ldconfig

Try:

LD_LIBRARY_PATH="/somepath/" python2.6 uwsgiconfig.py --build

where somepath is the path to your libpython2.6.so.x file.

Respectively update your /etc/ld.so.conf file and add the path to the libraries and run ldconfig.

王权女流氓 2024-09-03 13:38:16

编辑 uwsgiconfig.py 并将 PYLIB_PATH 设置为 python lib 目录的路径。

Edit uwsgiconfig.py and set PYLIB_PATH to the path of the python lib directory.

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