我最近一直在使用 jpype 与一些使用 python 的 java 代码集成,并且没有遇到真正的问题。我现在正试图在一个新系统上设置我的堆栈并且遇到了困难。
我正在运行 32 位 Python 3.6.5 和 32 位 oracle Java 1.8 update 171。Python 和 jpype 已使用 conda ( conda create -n venv -c conda-forge python jpype1 arrow
) 安装,并且
jpype.getDefaultJVMPath()
返回预期的路径 ( C:\Program Files (x86)\Java\jre1.8.0_171\bin\client\jvm.dll
),但是会引发异常,说明它找不到模块。下面是 python 控制台的输出。
Python 3.6.5 | packaged by conda-forge | (default, Apr 6 2018, 16:13:16) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import jpype
>>> import os
>>> jpype.__version__
'0.6.3'
>>> jvm_path=jpype.getDefaultJVMPath()
>>> jvm_path
'C:\\Program Files (x86)\\Java\\jre1.8.0_171\\bin\\client\\jvm.dll'
>>> os.path.exists(jvm_path)
True
>>> jpype.startJVM(jvm_path)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\User\AppData\Local\conda\conda\envs\venv\lib\site-packages\jpype\_core.py", line 70, in startJVM
_jpype.startup(jvm, tuple(args), True)
RuntimeError: Unable to load DLL [C:\Program Files (x86)\Java\jre1.8.0_171\bin\client\jvm.dll], error = The specified module could not be found.
at native\common\include\jp_platform_win32.h:58
>>>
我在这里错过了什么和/或做错了什么?