Is it safe/advisable to reset my Python to its fresh/default install in Linux?
I use Pop!_OS, and these systems have a default Python installed. I recently learned that it is better to first set up a python virtual environment (python -m venv venv
) and install all your additional libraries in it, instead of installing the libraries on the default version.