1

好吧,我按照这里的说明进行操作,但是在运行 setup.py 时出现编译错误

src/native/common/jp_voidtype.cpp: In member function ‘virtual void JPVoidType::setArrayValues(jarray, HostRef*)’:
src/native/common/jp_voidtype.cpp:105:2: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for Ada/C/ObjC but not for C++ [enabled by default]
cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for Ada/C/ObjC but not for C++ [enabled by default]
cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for Ada/C/ObjC but not for C++ [enabled by default]
In file included from src/native/python/jpype_python.cpp:18:0:
src/native/python/include/jpype_python.h:24:20: fatal error: Python.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1

因此,正如您所看到的,我在前两行中收到了很多已弃用的警告(我没有发布),但是随后出现了一个严重错误 - 缺少 Python.h 文件 - 导致安装失败。

我该如何修复它?我应该把这个文件放在哪里?

注意:我的 JAVA_HOME 正确设置为/usr/lib/jvm/java-7-oracle/

4

1 回答 1

6

命令:

sudo apt-get install python-jpype

为我工作。

于 2012-08-15T04:01:39.303 回答