I have recently installed Python 3.8.0 alongside Python 3.7.4.
I have some virtual environments (created using python -m venv <directory> that are based on v3.7.4. How do I update them to use v3.8.0?
Do I need to create a new virtual environment and reinstall the dependencies, scripts, etc.?
Note: There are some existing Q&A's (such as this) that deal with the older virtualenv package/tool. I'm specifically asking about the new built-in venv module, which is a standard built-in to Python since v3.3 and has some differences from virtualenv.