We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With the introduction of the published wheels, it becomes necessary to ensure libjvm is "preloaded" appropriately.
It should probably suggest something like:
import jpyutil # This needs to happen before `import jpy` jpyutil.preload_jvm_dll() import jpy
and/or
import jpyutil # This needs to happen before `import jpy` jpyutil.init_jvm() import jpy
but it may need to be more nuanced to account for different situations.
The text was updated successfully, but these errors were encountered:
Spawned from #80
Sorry, something went wrong.
On MAC it needs JAVA_HOME to be set especially if you have multiple versions of Java installed
devinrsmith
No branches or pull requests
With the introduction of the published wheels, it becomes necessary to ensure libjvm is "preloaded" appropriately.
It should probably suggest something like:
and/or
but it may need to be more nuanced to account for different situations.
The text was updated successfully, but these errors were encountered: