DEV Community

robert njuguna
robert njuguna

Posted on

Installing Apache Superset - Windows 11

I'm looking for an alternative to PowerBI, came across Apache Superset.

Installing the latest official release just to check out the features.

First, cloned the Apache superset repository.

Cloning superset repository failed with the error below.

remote: Compressing objects: 100% (485/485), done.
15:43:19.748344 pkt-line.c:80           packet:     sideband< PACK ...
15:44:17.125727 http.c:689              == Info: HTTP/2 stream 0 was not closed cleanly: CANCEL (err 8)
15:44:17.125727 http.c:689              == Info: stopped the pause stream!
15:44:17.125727 http.c:689              == Info: Connection #0 to host github.com left intact
error: RPC failed; curl 92 HTTP/2 stream 0 was not closed cleanly: CANCEL (err 8)
error: 5003 bytes of body are still expected
15:44:17.125727 pkt-line.c:80           packet:          git> 0002
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: fetch-pack: invalid index-pack output
Enter fullscreen mode Exit fullscreen mode

Updating from git from version 2.34.1 to version 2.47.1 fixed the failing cloning process.

PS C:\Users\Robert Njuguna\projects\superset> git update-git-for-windows
Enter fullscreen mode Exit fullscreen mode

Using docker, booted up Superset Release 4.1.1

$env:TAG=4.1.1
docker compose -f docker-compose-image-tag.yml up
Enter fullscreen mode Exit fullscreen mode

Superset now available on http://localhost:8088/login.

Accessed this using default credentials, username: **admin, **password: admin

It works!!

Top comments (0)