美文网首页
windows下安装superset

windows下安装superset

作者: 小恩娜 | 来源:发表于2019-04-18 10:39 被阅读0次

    1. 安装Python ,需要安装3.5版本以上,我安装的是3.6.8

    2、开始安装superset。

    pip install superset==0.27.0

    # 创建管理员帐号

    fabmanager create-admin --app superset

    # 初始化数据库 (windows下,先进入到 Python安装目录下,libs\site-packages\superset\bin下)

    Python  superset db upgrade

    # 加载例子(后续操作都需要在libs\site-packages\superset\bin下)

    Python superset load_examples

    # 初始化角色和权限

    Python superset init

    # 启动服务,端口 8088, 使用 -p 更改端口号

    Python superset runserver -d

    3、常见问题

    1)python 安装superset问题Was unable to import superset Error: markdown() takes 1 positional argument but 2

    解决方法:pip install "markdown<3.0.0" superset==0.27.0

    2)Was unable to import superset Error: cannot import name '_maybe_box_datetimelike'错误则需要

    解决方法:pip uninstall pandas

                     pip install pandas==0.23.4

    3)Was unable to import superset Error: No module named 'geohash'

    解决方法: 1、将Geohash文件夹改成geohash;

                       2、将文件夹下的 __init__.py 中的 from geohash 改成 from .geohash(注意:在geohash前面多了一个点)

    4)No user created an error occured

    解决方法:需要删除.superset.db数据库

    相关文章

      网友评论

          本文标题:windows下安装superset

          本文链接:https://www.haomeiwen.com/subject/ijlzwqtx.html