Install the following dependencies [in linux] for running the project . First go the directory where project is extracted. i.e BloodBank/
On executing
- Install python virtual environment
python -m pip install --user virtualenv- Go to the directory where project is saved and create a new virtual environment new_v using the following command:
python3 -m venv new_v- Activate the virtual environment
source new_v/bin/activate4.Install django and django-crispy-forms
pip install django
pip install django-crispy-forms- Execute the following command to run the server:
python manage.py runserver- Open the following address in your browser
http://127.0.0.1:8000/