from IPython.display import GeoJSON 无法在 google colab 上运行

from IPython.display import GeoJSON not working on google colab

在 Google Colab 我尝试从 IPython.display 导入 GeoJSON 时遇到错误:

任何有关如何正确导入它的帮助将不胜感激。

我发现问题是由安装了旧版本 IPython 的 Collab 运行时引起的。

pip freeze

输出

ipython==5.5.0
ipython-genutils==0.2.0
ipython-sql==0.3.9
ipywidgets==7.5.1

因为协作是在前一段时间创建的

更新模块解决了我的问题

pip install -U IPython 

之后您可以重新启动运行时,更改应该会反映出来

pip freeze

输出

ipython==7.16.1
ipython-genutils==0.2.0
ipython-sql==0.3.9

如何在 Google Colab 中执行:

  1. 进口IPython
  2. 更新IPython
  3. 现在可以从IPython.display导入GeoJson

Google Colaboratory 安装了旧版本的 IPython(v5.5.0 在我写这篇文章的时候)。解决此问题的最佳方法是在 Colab 笔记本中的 import 语句之前包含以下行:

!pip3 install --upgrade IPython

这应该可以为您解决!