-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
Pip & Poetry install failing #27
Comments
I can't even get your workaround to work. What I have been using is a conda environment file (which still uses pip to install vector2dggs): name: vector2dggs
channels:
- conda-forge
- defaults
dependencies:
- python=3.11
- pip
- gdal=3.9.1
- pip:
- vector2dggs>=0.5.4 If you save this to However here's my new workaround: conda create --name v2d python=3.11 gdal=3.9.1 -c conda-forge
pip install vector2dggs==0.5.4 Installing 0.6.0 (current release) does not work even with this method. This is probably due to an upgrade in the gdal dependency introduced in c61b7db Since it seems to matter, my system has |
name: vector2dggs
channels:
- conda-forge
- defaults
dependencies:
- python=3.11
- pip
- gdal=3.9.1
- pip:
- vector2dggs==0.5.4 Works. So this is ultimately associated with upgrading the python GDAL dependency; perhaps some conflict with system-installed GEOS. I'll see if we even need the upgrade to GDAL for v0.6; I don't think it's necesssary. |
With latest release (0.6.1) I can now do a bare @SPlanzer if you can do this too, please close the issue. |
Pip and Poetry install failure
pip install
is failing (Ubuntu with a new Conda environment)The below collapsible section has the details of the failed install. Looks to be related to compiling of the Cython code with pygeos
Installation Log: pip install vector2dggs
poetry install
returns similar resultsInstallation Log: poetry install vector2dggs
For Now
I was successful in install this with the below
The text was updated successfully, but these errors were encountered: