Main website of Study Abacus
- 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
python app.py
To stop the server, press Ctrl + C
and deactivate the virtual environmenat using deactivate
command.