You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the final step above, I got a failure related to, I think gdal. The last few lines of the output are:
error: command '/usr/bin/g++' failed with exit code 1
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for gdal
Running setup.py clean for gdal
Successfully built goes_ortho
Failed to build gdal
ERROR: ERROR: Failed to build installable wheels for some pyproject.toml based projects (gdal)
It seems like gdal is installed and working in the environment though. as running the gdalinfo command from the terminal works. However, goes-ortho did not get installed, and running import goes_ortho in python fails.
In my experience, installing GDAL and related libraries using conda/mamba leads to fewer issues than installing with pip.
I noticed that gdal was listed in two files:
pyproject.toml
environment.yml
Does this mean that conda will install gdal when condo env create -f environment.yml is run? Also, then pip will try to install gdal when pip install -e . is run?
I removed the gdal dependency from pyproject.toml and reran pip install -e . and the install was successful. I can now import goes_ortho in python.
The text was updated successfully, but these errors were encountered:
I ran through the installation instruction on the homepage/readme on a linux machine (CentOS Linux 7 Core).
On the final step above, I got a failure related to, I think gdal. The last few lines of the output are:
It seems like gdal is installed and working in the environment though. as running the
gdalinfo
command from the terminal works. However, goes-ortho did not get installed, and runningimport goes_ortho
in python fails.In my experience, installing GDAL and related libraries using conda/mamba leads to fewer issues than installing with pip.
I noticed that gdal was listed in two files:
Does this mean that conda will install gdal when
condo env create -f environment.yml
is run? Also, then pip will try to install gdal whenpip install -e .
is run?I removed the gdal dependency from
pyproject.toml
and reranpip install -e .
and the install was successful. I can nowimport goes_ortho
in python.The text was updated successfully, but these errors were encountered: