Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 691 Bytes

README.md

File metadata and controls

43 lines (28 loc) · 691 Bytes

Study Abacus Main website

Main website of Study Abacus

Setting up environment

  • Install virtual environment
pip install virtualenv
  • Create a virtual environment named env using the following command
virtualenv env -p python3
  • To activate the virtual environment in Windows, run:
env\Scripts\activate.bat
  • To activate the virtual environment in Linux or MacOS, run:
source env/bin/activate
  • Run the following command to install the dependencies
pip install -r requirements.txt

Running

python app.py

To stop the server, press Ctrl + C and deactivate the virtual environmenat using deactivate command.