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
I installed geemap successfully and ran import geemap. Then I get an error stating ModuleNotFoundError: No module named 'pkg_resources'
ModuleNotFoundError: No module named 'pkg_resources'
As pkg_resources is module in setuptools, I installed setuptools which fixed the issue.
pkg_resources
Probably, setuptools is one of the dependencies of the geemap library which was missed to be added in the requirements.txt file?
setuptools
geemap
import pkg_resources is in line 23 of geemap\conversion.py file
import pkg_resources
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I installed geemap successfully and ran import geemap.
Then I get an error stating
ModuleNotFoundError: No module named 'pkg_resources'
As
pkg_resources
is module in setuptools, I installed setuptools which fixed the issue.Probably,
setuptools
is one of the dependencies of thegeemap
library which was missed to be added in the requirements.txt file?import pkg_resources
is in line 23 of geemap\conversion.py fileThe text was updated successfully, but these errors were encountered: