Matt Tankersley

Results 79 comments of Matt Tankersley

Installing cartopy 0.24 into the bad env didn't fix the issue.

Running the code WORKS with an environment created with the below commands: ``` mamba create --name test_env --channel conda-forge pygmt geopandas cartopy ``` Installing Polartoolkit locally: ``` pip install -e...

Running the code FAILS with an environment created with the below commands : ``` mamba env create --file environment.yml --name test_env ``` Where `environement.yml` is defined below. and installing polartoolkit...

Running the code FAILS with an environment created with the below commands: ``` mamba create --name test_env --channel conda-forge pygmt geopandas cartopy invert4geom ``` Installing Polartoolkit locally: ``` pip install...

Running the code WORKS with an environment created with the below commands : ``` mamba env create --file environment.yml --name test_env ``` Where `environement.yml` is defined below. and installing polartoolkit...

From the above tests, it seems the issue happens when geopandas is installed AFTER polartoolkit. In future versions, when geopandas version is restricted to >=1, this shouldn't be an issue...

This seems to be fixed with #252

This still seems to be an issue. I seem to reliably fix it by uninstall Geopandas and PolarToolkit, then installing Geopandas first (with mamba), then separately installing PolarToolkit. I'll need...

With some additional testing, it seems the (or an additional) cause of the segfault is when `pytorch` is installed. This may be related to [this](https://github.com/GenericMappingTools/pygmt/issues/394#issuecomment-584129430) and [this](https://github.com/pangeo-data/pangeo-stacks/issues/125#issuecomment-584121742), which found the...

Comparing the working environment with the broken one (with pytorch installed), the packages installed for pytorch include: ``` - cpython - filelock - gmp - gmpy2 - libhwloc - libtorch...