- Open the project in VsCode or any other IDE.
- Install
pipusingsudo apt install python-pipcommand - Create python virtual environment :
- Installing virtualenv:
pip install virtualenv - Test your installation:
virtualenv --version - create a virtualenv using the following command:
virtualenv my_name - Remember to activate the relevant virtual environment every time you work on the project. This can be done using the
following command:source virtualenv_name/bin/activate
- Installing virtualenv:
- Make sure all the python libraries are installed as mentioned in
requirements.txtfile using
pip install -r requirement.txt. - To run the application :
python app.py - Open the browser the type:
localhost:5000/
Hurrah!! application is good to go