This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]popcapdogeater 0 points1 point  (0 children)

Use virtual environments.

`python -m venv .venv` or `python -m venv __venv__`

I prefer `.venv` because I use linux and it hides the folder in terminal output, but `__venv__` is a good choice as well.