python – Conda安装底图错误

我正在尝试通过Anaconda提示安装matplotlib-basemap,但它只是不起作用.

当我输入:

conda install basemap

它给出的错误是:

UnsatisfiableError: The following specifications were found to be in conflict:
  - basemap
  - xlsxwriter

这是否意味着我需要unistall xlsxwriter(即使我需要它)?我怎么解除这个呢?

我也试过通过https://www.lfd.uci.edu/~gohlke/pythonlibs/#basemap下载它:

pip install basemap-1.1.0-cp27-cp27m-win_amd64.whl

但那么错误是:

basemap-1.1.0-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.

最佳答案 当我输入时它起作用:

conda install -c conda-forge basemap
点赞