File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -107,3 +107,19 @@ Now you are ready to [create your first Flet app](create-flet-app).
107107When [ creating] ( create-flet-app ) and [ running] ( running-app ) Flet app using Poetry, you'll need to use ` poetry run ` before each command!
108108:::
109109
110+ :::Windows WSL Installs
111+ if you recieve ` error while loading shared libraries: libgstapp-1.0.so.0 ` g-streamer is not included in the Ubuntu 24.04.1 LTS
112+ ``` apt install -y libgstreamer1.0-0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-tools ```
113+ will install gstreamer for flet.
114+
115+ you will then recieve another error ` error while loading shared libraries: libmpv.so.1: cannot open shared object file: No such file or directory `
116+ ```
117+ sudo apt update
118+
119+ sudo apt install libmpv-dev libmpv2
120+
121+ sudo ln -s /usr/lib/x86_64-linux-gnu/libmpv.so /usr/lib/libmpv.so.1
122+ ```
123+
124+ Fixes the isse
125+ :::
You can’t perform that action at this time.
0 commit comments