In this repo, I will show you how to add bootstrap forms in django project. Online link
You can clone the project and run the following command to install:
I consider, You have already installed virtualenv and pip.
First of all, create a virtualenv in a working directory
$ virtualenv virtualenv_nameafter that you have to activate virtualenv machine by using the below command
#In linux
$ source virtualenv_name/bin/activate#In Windows
$ source virtualenv_name/Scripts/activate#installing list of dependencies to file
pip install -r requirements.txt$ python manage.py migrate$ python manage.py runserverNote : Make sure you cd into the clone folder before performing the command above.
python3