git clone https://github.com/GDSC2021/emotion-recognizer
- Download here
- Download latest version of Python
- Download Anaconda package
- Installation:
conda init
conda create -n emotion-detect python=3.8 -y
conda activate emotion-detect
- Open Terminal (macOS and Linux) or Anaconda Prompt (Windows)
- Go to your cloned directory
- Run:
- For Windows
pip install matplotlib pandas pillow autopep8 sklearn tensorflow keras opencv-python seaborn
- For macOS
chmod +x dependencies/mac/dependencies.sh && ./dependencies/mac/dependencies.sh
- For Linux
chmod +x dependencies/linux/linux.sh && ./dependencies/linux/linux.sh
- For Windows
- Run program:
python src/main.py #For Windows
python3 src/main.py #For macOS and Linux
- To abort program, press the combination of
Ctrl + C