We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Gdal is being imported in the __inti__.py inside of the io module using find_spec and manually loading the module.
__inti__.py
This can lead to problems within a jupyter notebook where plio can't find gdal due to the way packages are handled in conda envs.
This could probably be changed to a try except around the usual import method.
https://github.com/USGS-Astrogeology/plio/blob/baf43c4296b51cb1cbb7dfacd783f456605677d6/plio/io/__init__.py#L6
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Gdal is being imported in the
__inti__.py
inside of the io module using find_spec and manually loading the module.This can lead to problems within a jupyter notebook where plio can't find gdal due to the way packages are handled in conda envs.
This could probably be changed to a try except around the usual import method.
https://github.com/USGS-Astrogeology/plio/blob/baf43c4296b51cb1cbb7dfacd783f456605677d6/plio/io/__init__.py#L6
The text was updated successfully, but these errors were encountered: