Closed philippabele closed 1 year ago
Start using the venv modul in order to work in a virtual environment.
venv
https://docs.python.org/3/library/venv.html
https://realpython.com/python-virtual-environments-a-primer/
The idea is, to have for each git project your own python environment and to separate the used libraries as well as not mixing dependencies.
Keep in mind to add the folder of your environment to your gitignore file and keep your git repository clean.
Start using the
venv
modul in order to work in a virtual environment.https://docs.python.org/3/library/venv.html
https://realpython.com/python-virtual-environments-a-primer/
The idea is, to have for each git project your own python environment and to separate the used libraries as well as not mixing dependencies.
Keep in mind to add the folder of your environment to your gitignore file and keep your git repository clean.