Python:为什么我在MacOSX上导入glpk会遇到这个错误?

时间:2015-07-30 06:57:36

标签: python python-2.7 compiler-errors glpk

我按照这些步骤得到了第一个错误:

wget http://www.dcc.fc.up.pt/~jpp/code/python-glpk/python-glpk_0.4.43.orig.tar.gz
tar -xzf python-glpk_0.4.43.orig.tar.gz
cd python-glpk-0.4.43/src/
sudo make install

我收到了这个错误:

make -C swig all
make[1]: pyversions: Command not found
gcc -Wall -c -fPIC glpkpi_wrap.c -DHAVE_CONFIG_H -I/usr/include/ -I/usr/lib//config
glpkpi_wrap.c:130:11: fatal error: 'Python.h' file not found
# include <Python.h>
          ^
1 error generated.
make[1]: *** [glpkpi_wrap.o] Error 1
make: *** [all] Error 2

然后我通过更改Python版本链接到python或者让我们说: 在swig/Makefile

已更改

PYVERS := $(shell pyversions -d)

PYVERS := "Python 2.7.6" 

这是我的python版本

make -C swig all
swig -python  glpkpi.i
./glpk.h:916: Warning 314: 'in' is a python keyword, renaming to '_in'
sed -i 's/:in /:_in /g' glpkpi.py
sed: 1: "glpkpi.py": extra characters at the end of g command
make[1]: *** [glpkpi.py] Error 1
make: *** [all] Error 2

现在,当我在examples文件夹中运行python test.py时,它只会崩溃并说:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/glpk/__init__.py", line 26, in <module>
    from glpk_parser import *
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/glpk/glpk_parser.py", line 352, in <module>
    yacc.yacc(write_tables=0, debug=0)
  File "/Library/Python/2.7/site-packages/ply/yacc.py", line 3244, in yacc
    read_signature = lr.read_table(tabmodule)
  File "/Library/Python/2.7/site-packages/ply/yacc.py", line 1967, in read_table
    if parsetab._tabversion != __tabversion__:
AttributeError: 'module' object has no attribute '_tabversion'

我尝试了以下教程: Build and install from source

然后我试了

Installing-Python-glpk Tutorial

有些事情是不对的,我错过了导致

的步骤
import glpk

失败?

我也试过brew安装,没有运气!我也包含了我的Python路径,仍然没有帮助。

啊,最后我试过这个:

import sys    

sys.path.append('/Library/Python/2.7/site-packages/glpk/')

仍然没有运气!最后一步是来自answer

的灵感

1 个答案:

答案 0 :(得分:4)

好的,我试图重现你的问题并经历了同样的错误, 我设法通过将client/lib的版本从 3.6 更改为 3.4 来使其工作。

请注意,我在ply库中出错,必须将其降级为 4.43