Reputation: 79
I am trying to install the basemap module in my Anaconda environment. When I try to do this, the following message appears.
UnsatisfiableError: The following specifications were found to be in conflict: - basemap - zict Use "conda info " to see the dependencies for each package.
I am not able to delete the 'zict' package. Is there any way I can install the basemap package in another way?
Thank you very much!
Upvotes: 2
Views: 7124
Reputation: 11
I had trouble with that. Fortunately, I solved the problem. Follow below steps;
conda install basemap
conda install forge ...
pip install basemap
Upvotes: 0
Reputation: 21
for me that terminal command kept failing till I updated All of Anaconda first
conda update --all (this will take hella time)
then i ran:
conda install -c anaconda basemap
Upvotes: 2
Reputation: 66
I had the same issue, which was resolved following advice from https://groups.google.com/a/continuum.io/forum/#!topic/anaconda/tvtFcG5-0oA
What worked for me (Python 3.6 on 64-bit Windows 10) was using the basemap package built by conda-forge instead. So from the conda terminal, run:
conda install -c conda-forge basemap
Hope this helps!
Upvotes: 5