virtual environments

Step 1: Create a Virtual Environment

Run the following command in your terminal or command prompt:

python -m venv venv

In this command:

Step 2: Activate the Virtual Environment

Step 3: Install Packages from requirements.txt

Ensure you have a requirements.txt file, then run:

pip install -r requirements.txt

Step 4: Deactivate the Virtual Environment

To exit the virtual environment, use:

deactivate

edit this page