Ben Steffensmeier

Results 231 comments of Ben Steffensmeier

I can't think of any reason that isn't technically possible. The biggest complication is that the native shared library is specific to a particular OS and python version so if...

Eventually we would like to get Jep working with the stable ABI because it would makie distribution much easier. There is some good analysis of that problem in #308. Whenever...

An undefined symbol typically means that something went wrong loading libpython. The simplest workaround is to set the env var LD_PRELOAD to the location of the libpython which contains the...

To use jep from a virtual environment yI recommend you activate the virtual environment before starting the JVM. In my experience that is the most reliable way to ensure the...

Here is what we want to happen when a submodule like `scipy.ndimage` is imported in a sub-interpreter: 1. Python breaks apart `scipy.ndimage` and imports `scipy` first. 2. The import hits...

If you don't mind modifying scipy code another workaround is to move the import of importlib into the `__getattr__` function. That way it would use the importlib from the sub-interpreter...

That is not something that is currently possible. As far as I know there is no mechanism in Java to dynamically define classes at runtime so we cannot create a...

Please set the environment variable JAVA_HOME to a path containing the JDK.

When you install jep it needs to build the native library using the JNI headers included with your JVM so it needs to know where java is installed. I don't...

It is a system variable, I don't develop jep on windows so I don't have instructions on how to set it but it is a common setting for java apps...