试图让 Altair 与 Jupyter Notebook 一起使用,我使用它安装了它
conda install -c conda-forge altair vega_datasets notebook vega
但是当我尝试做一个示例图时
import altair as alt
from vega_datasets import data
# for the notebook only (not for JupyterLab) run this command once per session
alt.renderers.enable('notebook')
iris = data.iris()
alt.Chart(iris).mark_point().encode(
x='petalLength',
y='petalWidth',
color='species'
)
正如他们的快速入门指南中所见,我得到
ValueError:
To use the 'notebook' renderer, you must install the vega package
and the associated Jupyter extension.
See https://altair-viz.github.io/getting_started/installation.html
for more information.
即使我已经使用 Conda 安装了 vega。不过,我可以制作 vega 示例图。不过,我无法启用 Jupyter 扩展,因为 Jupyter 说它不兼容。
任何帮助表示赞赏。