@@ -113,6 +113,8 @@ recommendations. Extend with Python and Perl hooks for custom automation.
113113# Install build dependencies
114114sudo dnf install rpm-build rpmdevtools rpmlint python3-devel vte291-gtk4
115115
116+ pip install polars
117+
116118# Clone and build
117119git clone https://github.com/Peter-L-SVK/sql-schema-studio.git
118120cd sql-schema-studio
@@ -133,10 +135,11 @@ sudo apt install -y python3-psycopg2 python3-gi python3-gi-cairo \
133135 python3-scikit-learn python3-matplotlib python3-cairo python3-paramiko \
134136 gir1.2-gtk-4.0 gir1.2-gtksource-5 libvte-2.91-gtk4-dev \
135137 python3-pipx
136-
137- # Install dependencies with pipx
138- pipx install faker kbcstorage scikit-learn
139138
139+ pip install polars --break-system-packages
140+
141+ # Install dependencies with pipx
142+ pipx install faker kbcstorage scikit-learn --include-deps
140143
141144# Clone and build
142145git clone https://github.com/Peter-L-SVK/sql-schema-studio.git
@@ -166,13 +169,15 @@ sudo apt install -y python3-psycopg2 python3-gi python3-gi-cairo \
166169 python3-sqlparse python3-keyring python3-numpy \
167170 python3-scikit-learn python3-matplotlib python3-cairo python3-paramiko \
168171 gir1.2-gtk-4.0 gir1.2-gtksource-5 libvte-2.91-gtk4-dev \
169- python3-pipx
172+ pipx
173+
174+ pip install polars --break-system-packages
170175
171176# Install pipx if not already installed (it's in the apt command above)
172177# pipx ensures isolated Python package installations
173178
174179# Install dependencies with pipx
175- pipx install faker kbcstorage scikit-learn
180+ pipx install faker kbcstorage scikit-learn --include-deps
176181
177182# Clone and install from source
178183git clone https://github.com/Peter-L-SVK/sql-schema-studio.git
@@ -186,7 +191,7 @@ python3 -m src.main
186191
187192``` bash
188193sudo dnf install python3-gobject gtk4 gtksourceview5 libadwaita cairo python3-cairo \
189- python3-polars python3- paramiko python3-faker python3-kbcstorage vte291-gtk4
194+ python3-paramiko python3-faker python3-kbcstorage vte291-gtk4
190195
191196git clone https://github.com/Peter-L-SVK/sql-schema-studio.git
192197cd sql-schema-studio
@@ -209,13 +214,15 @@ sudo apt install -y python3-psycopg2 python3-gi python3-gi-cairo \
209214 python3-sqlparse python3-keyring python3-numpy \
210215 python3-matplotlib python3-cairo python3-paramiko \
211216 gir1.2-gtk-4.0 gir1.2-gtksource-5 libvte-2.91-gtk4-dev \
212- python3-pipx postgresql postgresql-client
217+ pipx postgresql postgresql-client
218+
219+ pip install polars --break-system-packages
213220
214221# Install pipx if not already installed
215222# pipx ensures isolated Python package installations
216223
217224# Install dependencies with pipx
218- pipx install faker kbcstorage scikit-learn
225+ pipx install faker kbcstorage scikit-learn --include-deps
219226
220227# (Optional) Start local PostgreSQL
221228sudo service postgresql start
0 commit comments