Last updated
Last updated
As Python gets updated older code will cease to run due to changes in Python syntax and functionality
To resolve this, we can run code in Containers but that adds a level of complexity
Another solution is to utilize and and run the code in virtualized environments with the needed version of Python
(pmapper) is a tool that requires Python version 3.9 to run (it errors out otherwise)
We can set up a virtual environment to run any version of Python we want
This is useful for isolating your Python code/packages without impacting your system configuration
is a useful tool for letting us quickly download and switch between multiple versions of Python
Full installation instructions can be
is a useful tool for installing and running python code and apps in isolated virtual environments
Full installation instructions can be
Tips and tricks for working with Python