无法在ubuntu 12.04 64位上安装JPype

时间:2012-08-14 09:11:27

标签: python installation jpype

好吧,我按照here的说明操作,但运行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/

1 个答案:

答案 0 :(得分:6)

命令:

sudo apt-get install python-jpype

为我工作。