Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/selenium/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python jupyter实验室内核在尝试运行hvplot时死亡_Python_Jupyter Lab_Python Xarray_Holoviews_Hvplot - Fatal编程技术网

Python jupyter实验室内核在尝试运行hvplot时死亡

Python jupyter实验室内核在尝试运行hvplot时死亡,python,jupyter-lab,python-xarray,holoviews,hvplot,Python,Jupyter Lab,Python Xarray,Holoviews,Hvplot,当尝试运行以下代码时,jupyter lab内核死亡,没有错误输出,这与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('naturaleart

当尝试运行以下代码时,jupyter lab内核死亡,没有错误输出,这与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)
有人知道为什么会这样吗