Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 569 Bytes

File metadata and controls

20 lines (19 loc) · 569 Bytes

COM424 Lab Exercises

1. Setup Instructions

  1. Install Python 3.10 - configure PATH to run from console terminal
  2. Create virtual environment named com424 in project directory
python -m venv com424
  1. Activate virtual environment as follows
  • On UNIX systems
    source ./com424/bin/activate
  • Windows
    .\com424\Scripts\activate
  1. Install packages specified in the requirements.txt file using pip - Python's package manager with virtual environment activated
pip install -r requirements.txt