matplotlib / basemap

Plot on map projections (with coastlines and political boundaries) using matplotlib
MIT License
772 stars 390 forks source link

install basemap #572

Closed PPINK6518 closed 1 year ago

PPINK6518 commented 1 year ago

i can't install basemap on anaconda.i used the command conda install basemap. But it's not working

ksunden commented 1 year ago

The matplotlib project does not maintain the conda packages, problems with installing via conda should be reported to the packagers.

It looks like basemap is should available on the main (i.e. the default) channel, but is also available on conda-forge or anaconda, which could potentially still work:

conda install -c conda-forge basemap

or

conda install -c anaconda basemap

While not ideal, you could also potentially install via pip (mixing conda and pip can lead to issues). If you do so, greatly recommend doing so in a conda environment.

conda env create -n basmapenvpip
conda activate basemapenvpip
pip install basemap
PPINK6518 commented 1 year ago

thanks for your response