Setting up virtual environments for Python
The biggest issue when dealing with multiple projects is how to keep track of the various Python and other packages’ versions you are using in each project. It is not uncommon to update something and get something else broken… The solution is virtual environments. And for these there are few …