Chris Slater
Chris Slater
I am also running into this issue. All of the projects that I work on use JTS 1.18.
Any update on this?
I am having an issue with this too. ``` pyenv virtualenv jython-2.7.1 multibeam-ingest-jython-2.7.1 /Users/cslater/.pyenv/versions/jython-2.7.1/bin/pip: line 4: import: command not found /Users/cslater/.pyenv/versions/jython-2.7.1/bin/pip: line 5: import: command not found from: can't read...
I managed to get a little further by upgrading pip. But creation of the virtualenv was still not successful. ``` pyenv local jython-2.7.1 jython -m pip install --upgrade pip pyenv...
Is there any update on this? I have tracked down a memory leak in my application to some code in a third party library that reads a NetCDF file. I...
@TimoRoth Sorry, I'm not a Python expert. I just used pip to install the Python library (pip install netCDF4). How do I check or change the netcdf-c version that comes...
All I did was this: > pip install netCDF4 Collecting netCDF4 Downloading netCDF4-1.6.2-cp39-cp39-macosx_11_0_arm64.whl (3.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/3.1 MB 3.7 MB/s eta 0:00:00 Requirement already satisfied: numpy>=1.9 in /Users/cslater/.pyenv/versions/3.9.2/envs/eipy/lib/python3.9/site-packages (from netCDF4)...
I modified @fmaussion 's script to perform a no-op after opening the test file and removed the graph generation since that would use memory. I simply print the memory usage....
I also ran the following to see if I could determine the version of netcdf-c used in the wheel: `nm _netCDF4.cpython-39-darwin.so` Which listed entries like: > 0000000000098dac t ___pyx_setprop_7netCDF4_8_netCDF4_8Variable_ndim Maybe...