Jupyter环境中配置pyecharts模块的路径
时间: 2023-05-15 10:07:40 浏览: 197
jupyter notebook 中输出pyecharts图实例
可以使用以下命令在Jupyter环境中配置pyecharts模块的路径:
```
import sys
sys.path.append('path/to/pyecharts')
```
其中,'path/to/pyecharts'是pyecharts模块所在的路径。
阅读全文
jupyter notebook 中输出pyecharts图实例