Best approach in doing development in any language is to have an isolated dev environment. In python, we do it this way: 1python3 -m venv env 2source ./env/bin/activate See more options in https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/
Read More