Vendoring Qt.py
How do you know a user doesn't have the wrong version of Qt.py when running your application?
– Simple, you bundle Qt.py with your application. Here's a short write-up on how you could go about doing just that.
How do you know a user doesn't have the wrong version of Qt.py when running your application?
– Simple, you bundle Qt.py with your application. Here's a short write-up on how you could go about doing just that.
This is my Visual Studio Code (vscode) setup, with ambitions to create a custom Python IDE.
Quick and easy way to remove all containers (and their volumes) as well as all images:
# Remove containers and their volumes
docker stop $(docker ps -a -q)
docker rm -v $(docker ps -a -q)
# Remove images
docker rmi -f $(docker images -q)
# Remove unused images
docker system prune --all
Combine filters, 'xargs
etc: