Damian Szetela
Damian Szetela
WWindmill
Created by shoomow on 11/25/2023 in #help
Exception when importing Python's CV2 lib
It seems the Init script is much better for your use case. I will supply dockerfiles if init script won't work for you
16 replies
WWindmill
Created by shoomow on 11/25/2023 in #help
Exception when importing Python's CV2 lib
In my case I use the docker compose file with build directive - it references docker build folder. That in turn takes windmill image and adds needed changes (certificates in my case). You can do the same, but with libgl. See this link for a bit more description how this works: https://stackoverflow.com/a/45173812
16 replies
WWindmill
Created by shoomow on 11/25/2023 in #help
Exception when importing Python's CV2 lib
It's not a problem with import. It is missing libgl dependency. Install it and it should work
16 replies
WWindmill
Created by RBlhaze on 11/23/2023 in #help
Self-hosted instance workspace bulk migration
Maybe this will be of some help ... Recently I did a Postgresql upgrade on Debian using apt-get upgrade command. After that was done there were 2 versions of postgresql listed under postgresql service. To upgrade it from version 13 to 15 I had to do following steps: sudo su - postgres pg_lsclusters pg_dropcluster --stop 15 main pg_upgradecluster 13 main exit systemctl stop postgresql@13-main sudo su - postgres pg_dropcluster --stop 13 main exit apt purge postgresql-13 postgresql-client-13
9 replies