时间:2021-05-22
建议下载pyecharts(0.5.xx)版本,如果使用 pip install pyecharts 默认安装V1版本(如1.7.1)会出现如下报错:
1、Bar模块导入问题
from pyecharts import Bar
报错:
cannot import name ‘Bar'
解决办法:
from pyecharts.charts import Bar
2、Bar 使用报错
报错:
TypeError: init() takes from 1 to 2 positional arguments but 3 were given
尝试注释掉报错行:
#bar =Bar("我的第一个图表", "这里是副标题")
还会有新的报错:‘Bar' object has no attribute ‘add'
解决办法:卸载、安装旧版本
pip install pyecharts==0.5.10 -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.tuna.tsinghua.edu.cn
如果安装时报错(mac系统):
Failed building wheel for dukpy
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
error: command 'gcc' failed with exit status 1
解决办法:
1、安装xcode
xcode-select --install
2、然后再安装pyecharts-0.5.10
3、安装成果后重启jupyter notebook即可
以上这篇解决pyecharts在jupyter notebook中使用报错问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1.Jupyter默认目录调整首先要找到jupyter生成的配置文件jupyter_notebook_config.py。如果没有,在anacondapromp
jupyternotebook的安装在这里都不赘述可以参考jupyter官网的步骤http://jupyter-notebook.readthedocs.io/
写给自己1.首先,确定你的问题是:Jupyter-notebook可以正常运行,但是不弹出默认浏览器,例如下图(只有下图,浏览器死活没动静!):解决方案:1.电
换用非默认浏览器时需要输入密码或token查询方法:在XX:\AnacondaXX\Scripts下运行jupyter-notebook.exelist可得to
1、远程服务器上安装jupyternotebook(配置jupyter_notebook_config.py文件)sudopipinstalljupyter2、