无法使用python2.6在centos(fc10)下编译uwsgi
它通常使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试:
其中
somepath
是libpython2.6.so.x
文件的路径。分别更新您的
/etc/ld.so.conf
文件并添加库的路径并运行ldconfig
。Try:
where
somepath
is the path to yourlibpython2.6.so.x
file.Respectively update your
/etc/ld.so.conf
file and add the path to the libraries and runldconfig
.编辑 uwsgiconfig.py 并将 PYLIB_PATH 设置为 python lib 目录的路径。
Edit uwsgiconfig.py and set PYLIB_PATH to the path of the python lib directory.