A web application that helps UCI students find study partners.
python 3.*virtualenvpackage installed with the above python3
- Under the top level folder, run
virtualenv venv - Activate the virtualenv:
source venv/bin/activate - After you see
(venv)on the side of your terminal, runpip3 install -r requirements.txtto install all dependencies.
- When you install a new package, always remember run the
pip3 installcommand in the virtual environment - After there is a new package installed, before you commit, run
pip3 freeze > requirements.txtunder the corresponding directory to update therequirement.txtfile