Kanaries / pygwalker

PyGWalker: Turn your pandas dataframe into an interactive UI for visual analysis
https://kanaries.net/pygwalker
Apache License 2.0
13.32k stars 697 forks source link

Pygwalker in Streamlit Python 3.9 #389

Closed ghost closed 9 months ago

ghost commented 10 months ago

Hi,

Has anyone tested pygwalker in streamlit with python 3.9 in amazon redshift?

Locally, the code runs well, but when deployed into the cloud, we get the below error. All ideas appreciated, thanks!

ModuleNotFoundError: No Module named '_sqlite3'

longxiaofei commented 10 months ago

The dependency configuration of pygwalker cannot directly solve these problems.

It may be that your current Python environment is lacking dependencies related to SQLite.

I have searched for some answers on the internet, hoping it can help you:

1. Install the sqlite-devel package

yum install sqlite-devel

2. Recompile python