Lab 2 of 5
Β·
Guided
Install a Package and Inspect It
Objective: Install the requests package into a venv and use pip show to read its metadata.
Instructions
With the venv from Lab 1 still active (you should see (venv) in your prompt), run:
pip install requests
pip show requests
pip show prints several lines. Paste only these four lines from the output:
Name: requests
Version: <whatever was installed>
Summary: Python HTTP for Humans.
Location: <path ending in site-packages>
Your version and location path will differ β that is expected. Submit your actual four lines.
π‘ Show Hint
pip show requests prints Name, Version, Summary, Home-page, Author, License, Location, Requires, and Required-by. Copy only the four lines named above.
Paste Your Output