Getting Started For Other Team Members - Hiroshi97/CV-Analysis GitHub Wiki
Prerequisites: Make sure you have Python 3 installed!!
After you've cloned the repository into your machine, set up a virtual environment in the root directory of the cloned project using the following command:
On Mac:
- $ python3 -m venv venv
On Windows:
- $ py -3 -m venv venv
After setting up the virtual environment, activate your virtual environment:
On Mac:
- $ . venv/bin/activate
On Windows:
- $ venv\Scripts\activate
Once your virtual environment is activated, your command line/terminal should look something like this:
(venv) Matthews-Air:CV-Analysis metiu$
Finally, enter the following command to install all the dependencies and you will be ready to start working on the project:
- pip install -r requirements.txt
Once you are ready to launch the Flask app, enter the following command:
- python app.py (or any other name)