尝试运行以下代码时,jupyter 实验室内核死亡,没有错误输出,与 hvplot 有关,但经过几个小时的搜索,我无法找到有关此问题的任何信息:
import geoviews as gv
import geoviews.feature as gf
from cartopy import crs
import hvplot.pandas
import geopandas as gpd
cities = gpd.read_file(gpd.datasets.get_path('naturalearth_cities'))
cities.hvplot(global_extent=True, frame_height=450, tiles=True)
有谁知道为什么会这样?