Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 534 Bytes

venv_lab.md

File metadata and controls

11 lines (7 loc) · 534 Bytes

Virtual Environments lab

  1. Run the following command in the terminal to list the number of installed packages: pip list. How many packages do you see installed? (HINT: remember the wc command from the intro to unix lecture)

  2. Create a new virtual environment in a new directory called venv. What command did you use?

  3. Activate the new environment and install the packages listed in requirements.txt. How many packages are installed now?

  4. Leave the virtual environment you activated. What command did you use?