Replies: 3 comments 6 replies
-
Do not use VPN when installing packages |
Beta Was this translation helpful? Give feedback.
0 replies
-
conda create -n gee python=3.11
conda activate gee
pip install geemap |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
giswqs
-
It seems mamba breaks your base conda env. Try creating a new conda env as follows. Do NOT install packages into the base env. conda create -n gee python=3.11
conda activate gee
conda install -c conda-forge mamba
mamba install -c conda-forge geemap |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Greetings, Mr. Wu!
Then I used pip install geemap to install it, it seems to be successful, but when import ee, it suggests that the module is not available, then I tried again using pip install pygis, and I got this error.
I'm really cracking up, the computer is new, there shouldn't be any problems with the environment, why can't geemap mamba be installed, and why can't I use pip to install these?
Beta Was this translation helpful? Give feedback.
All reactions