admin create a new virtual environment python3 -m venv .test Activating the Virtual Environment source .test/bin/activate Installing Packages with pip pip install requests This package will only be available within this virtual environment, ensuring project isolation. Running the Virtual Environment A. Run a simple example script import requests response = requests.get('https://api.github.com') print(f"GitHub API Status Code: {response.status_code}") Save the file as a Python file, for example: python_example.py Run the Python script python3 python_example.py Get result below GitHub API Status Code: 200 Deactivate the virtual environment In the terminal where your virtual environment is active, simply type deactivate