A community driven information sharing platform that allows users to preserve and share knowledge through uploading uploading books, research papers, e.t.c
A virtual environment is isolated environment
python -m venv pdf_library
The command creates a virtual environment with the name 'pdf_library'. A folder with the name 'pdf_library' is created in the current working directory. This works for python >= 3.3
virtualenv --python=/usr/bin/python3 pdf_library
source pdf_library/bin/activate
pip install -r requirements.txt
cd [project directory]
python manage.py runserver
Visit http://localhost:8000 in your browser