0

我们如何在 google colab 中安装 geoplot?

!pip install geoplot

以上给出

Collecting geoplot
  Using cached https://files.pythonhosted.org/packages/e1/8f/46133752e1f02e70501939e739b81cbc85c79d7398c963b8a25a3178bffe/geoplot-0.4.1-py3-none-any.whl
Requirement already satisfied: mapclassify>=2.1 in /usr/local/lib/python3.6/dist-packages (from geoplot) (2.4.2)

但是当我尝试导入 geoplot 时,该包无法识别

4

2 回答 2

1

我认为他们不建议使用pip install geoplot这里是他们文档的链接,希望它可以帮助您使用conda

于 2021-01-31T11:10:46.833 回答
1

地理绘图需要 Cartopy。您需要使用apt它来安装它。然后,您可以正常安装geoplot pip

!apt install python3-cartopy
!pip install geoplot

这是一个示例colab 笔记本

于 2021-01-31T11:44:25.073 回答