-
## Setup
Windows 10 10.0.19045 Build 19045
`conda create -n mphtest`
`conda activate mphtest`
`pip install MPh`
### Running without installed COMSOL
`(mphtest) D:\\mydir\\> python`
…
-
I've been investigating a spurious segmentation fault which is happening after pytest completes and the Python shutdown process begins. The core dump is always happening inside ``jpype._core._JTermina…
-
Hi,
I am using JPype in a pytest context to execute SQL commands on an oracle database via JayDeBeApi. And I am experiencing segfaults of the python interpreter in less than **1% of the cases** after…
-
When using Jaydebeapi to connect to a MSSQL Server Database, and call stored procedures. an error occurs, in specific cases. Check below
_wConnection = jaydebeapi.connect(jclassname=iClassName…
-
```pip install pytimber``` installs a too recent version of jpype resulting in an error.
To have a working installation I needed to do the following:
```bash
wget https://repo.anaconda.com/minico…
-
It would be nice to support something like this:
```python
>>> def fib(n):
... if n == 0 or n == 1:
... return 1;
... return fib(n - 1) + fib(n - 2)
...
>>> import scyjava
>>> …
-
Hi, I am wondering if it's possible to support passing a file-like object with from python to imagej. The goal is to supporting lazy loading of large files that potentially backed by remote storage ba…
-
Thank you first of all for putting the pims module together!!
Unfortunately, I am running into problems opening Nikon .nd2 files.
Here is what I do:
```
mamba create --name imageprocessing p…
-
Hello,
It looks like PredPatt was written in Python2.7, but some of its required packages such as concrete and jpype1 require Python3 to install. I think I'd need to install previous versions of th…
-
Hello!
I'm running into a problem with JPype and hope anyone can help me. I'm trying to run NetLogo in python using PyNetLogo, which runs JPype for setting up JVM. On my own pc: win10 64bit with 6…