How to work with virtual environments in IDE?
Answer
•Create venv in the project root.
•Select the venv interpreter in IDE settings.
•Install dependencies into this venv.
•Check that IDE terminal also uses venv.
•Don't mix global and project packages.
Was this answer helpful?