On the terminal execute the below command to create the projects' working directory and move into that directory.
$ mkdir visitor-management
cd visitor-management
In the projects' working directory execute the below command to create a virtual environment for our project. Virtual environments make it easier to manage packages for various projects separately.
$ virtualenv venv
To activate the virtual environment, execute the below command.
$ source venv/Script/activate
Clone this repository in the projects' working directory by executing the command below.
$ git clone https://github.com/rakesh-krishna/visitor-management.git
$ cd visitor-management
To install all the required dependencies execute the below command.
$ pip install -r requirements.txt
If any problem with installing requirements try refering here
Use execute the below command.
$ python wsgi.py