whitphx / stlite

In-browser Streamlit 🎈🚀
https://edit.share.stlite.net
Apache License 2.0
1.24k stars 64 forks source link

Support PyGWalker #588

Open whitphx opened 1 year ago

whitphx commented 1 year ago

https://github.com/Kanaries/pygwalker

whitphx commented 1 year ago

When installing it, the following error occurs:

ValueError: Can't find a pure Python 3 wheel for: 'duckdb', 'psutil'
Vuizur commented 1 year ago

I think this is a problem with pyodide. psutil seems to be a helper package that can't work in the browser. Maybe pygwalker could exclude it from the requirements in the emscripten platform, so that a browser would not try to install it. (Not sure, have never tried this.) The main blocker is duckdb. There are apparently problems trying to compile it: https://github.com/pyodide/pyodide/pull/2961 One could try to fix that, but doing so probably will be horribly complicated.