Skip to content

Commit 85d5fc6

Browse files
authored
WSL Ubuntu 24.04.1 LTS Notes fix (#370)
Fix for fresh install of wsl ubuntu to run flet
1 parent 15fdca2 commit 85d5fc6

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

docs/getting-started/index.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,19 @@ Now you are ready to [create your first Flet app](create-flet-app).
107107
When [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+
:::

0 commit comments

Comments
 (0)