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

帮助!

4

2 回答 2

1

尝试:

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

你的文件somepath的路径在哪里。libpython2.6.so.x

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

于 2010-04-07T13:05:40.097 回答
0

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

于 2011-01-29T16:30:38.427 回答