Other Things
Virtual Environments
Virtual environments allows you to keep multiple python projects' installed packages separate from each other.
Create a new virtual environment
This creates a venv
directory.
Now, we can install things only in this directory and they won't be installed anywhere else on our machine.
Activate a virtual environment
This should add (venv)
to your terminal prompt.
Deactivate a virtual environment
Installing 3rd-Party Packages
Install multiple packages
Last updated
Was this helpful?