May 2021
Intermediate to advanced
142 pages
3h 37m
English
The maintainers of Python regularly release improved versions of the language. New versions of Python frequently contain new modules and performance improvements. One of the easiest ways to try out these new Python versions is with Docker.
You may already be familiar with Docker, or have just tried it out by using this book’s companion image introduced in Setting Up Your Environment and Using This Book’s Companion Docker Image.
In case you aren’t familiar: Docker is a virtualization technology that lets you bundle code and packages together in an image and run them in something called a container. Docker images are static bundles of code and packages, and Docker containers are the running version ...