Project Management System in Django with Source Code
This Project Management System in Django created based on python, Django, and SQLITE3 Database. The Project Management System is a web application that helps with project planning, resource allocation, organization, monitoring, and estimation, among other things.
Project systems are designed to handle project components such as cost control, budget management, quality management, forecasting, planning, assignment, and much more, depending on the requirements.
If you’re a programmer looking for a way to build your own web-based project management system, you’ve come to the right spot. In this tutorial, you’ll learn how to use Python Django and SQLITE3 Database to build your own project management system.
This Project Management System is an easy project for beginners to learn how to build a web-based python Django project. We will provide you with the complete source code and database for the python project so that you can easily install it on your machine and learn how to program in Python Django.
To start creating a Project Management System in Python Django, makes sure that you have PyCharm Professional IDE Installed in your computer.
This Project Management System in Django Framework, Also includes a Download Source Code for free, just find the downloadable source code below and click download now.
About Project | Project Details | Definition |
---|---|---|
Project Name | Project Management System in Django | A Project Management System it’s a fully functional website and shopping cart system that goes out of its way to give you the versatility you need to operate our online store. The application’s basic concept is to allow customers to shop virtually using the Internet and to purchase the items and articles they desire from the store. |
Python version (Recommended) | 3.8 Version | Python 3.8 introduces some new syntax to the language, as well as a few small modifications to existing behavior and, most importantly, a slew of performance improvements, following in the footsteps of the previous 3.7 version. |
Programming Language Used | Python Django Language | Django is a high-level Python web framework for building safe and maintainable websites quickly. Django is a web framework built by experienced developers that takes care of a lot of the heavy lifting so you can focus on developing your app instead of reinventing the wheel. |
Developer Name | itsourcecode.com | Free projects containing source code in Java, PHP, Python, Django, VB.Net, Visual Basic, C, C++, C#, Javascript, and other languages are available on this website. |
IDE Tool (Recommended) | Sublime, Visual Studio, PyCharm | Sublime Text is a source code editor that is available for purchase. It comes with built-in support for a variety of programming and markup languages. Plugins, which are often community-built and maintained under free-software licenses, allow users to extend the functionality of the system. Sublime Text has a Python API to help with plugins. |
Project Type | Web Application | A web application, unlike computer-based software programs that operate locally on the device’s operating system, is application software that runs on a web server. The user uses a web browser with an active network connection to access web apps. |
Database | SQLite | SQLite is a programming language that is used to create embedded software for devices such as televisions, cell phones, and cameras. It can handle HTTP requests with low to medium traffic. SQLite has the ability to compress files into smaller bundles with less metadata. SQLite is a temporary dataset that is used within an application to process data. |
Admin Features of Project Management System in Django
- Register Page– The page where new user created their login credentials for the website.
- Login Page – The page where the system administrator enters their system credentials in order to gain access to the system’s administrative side.
- New Company Page -The page where an administrator can add a new company.
- Project Views – The page where an administrator can view project progress if it working or not working.
- User Views – The page where an administrator can view users task.
- New Project Page – The page where an administrator can add a new project.
- New Task – The page on which an administrator can add new task.
- New User Page – The page where a new user credentials are created by an admin.
- Users list – This is the page that lists and manages the added users.
Project Management System in Django Steps on How to Create a Project
Time needed: 5 minutes.
Here’s the step’s on how to create a Project Management System in Django with Source Code.
- Step 1: Open file.
First , open “pycharm professional” after that click “file” and click “new project“.
- Step 2: Choose Django.
Next, after click “new project“, choose “Django” and click.
- Step 3: Select file location.
Then, select a file location wherever you want.
- Step 4: Create application name.
After that, name your application.
- Step 5: Click create.
Lastly, finish creating project by clicking “create” button.
- Step 6: Start Coding.
Finally, we will now start adding functionality to our Django Framework by adding some functional codes.
Functionality and Codes of the Project Management System in Django
- Create template for the homepage in Project Management System in Django.
In this section, we will learn on how create a templates for the homepage. To start with, add the following code in your dashboard.html under the folder of core/templates/core.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
{% extends 'core/base.html' %} {% load staticfiles %} {% block content %} <div class="container-fluid"> <div class="animated fadeIn"> <div class="row"> <div class="col-sm-12 col-lg-6"> <div class="card text-white bg-primary"> <div class="card-body pb-0"> <div class="btn-group float-right"> <button type="button" class="btn btn-transparent dropdown-toggle p-0" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="fa fa-cog"></i> </button> <div class="dropdown-menu dropdown-menu-right"> <a class="dropdown-item" href="#">Action</a> <a class="dropdown-item" href="#">Another action</a> <a class="dropdown-item" href="#">Something else here</a> </div> </div> <h4 class="mb-0">{{ companies.count }}</h4> <p>Registered Companies</p> </div> <div class="chart-wrapper px-3" style="height:70px;"><div class="chartjs-size-monitor" style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px; overflow: hidden; pointer-events: none; visibility: hidden; z-index: -1;"><div class="chartjs-size-monitor-expand" style="position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1;"><div style="position:absolute;width:1000000px;height:1000000px;left:0;top:0"></div></div><div class="chartjs-size-monitor-shrink" style="position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1;"><div style="position:absolute;width:200%;height:200%;left:0; top:0"></div></div></div> <canvas id="card-chart1" class="chart chartjs-render-monitor" height="70" width="248" style="display: block; width: 248px; height: 70px;"></canvas> </div> </div> </div> <!--/.col--> <div class="col-sm-12 col-lg-6"> <div class="card text-white bg-info"> <div class="card-body pb-0"> <button type="button" class="btn btn-transparent p-0 float-right"> <i class="fa fa-cog"></i> </button> <h4 class="mb-0">{{ users.count }}</h4> <p>Registered Users</p> </div> <div class="chart-wrapper px-3" style="height:70px;"><div class="chartjs-size-monitor" style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px; overflow: hidden; pointer-events: none; visibility: hidden; z-index: -1;"><div class="chartjs-size-monitor-expand" style="position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1;"><div style="position:absolute;width:1000000px;height:1000000px;left:0;top:0"></div></div><div class="chartjs-size-monitor-shrink" style="position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1;"><div style="position:absolute;width:200%;height:200%;left:0; top:0"></div></div></div> <canvas id="card-chart2" class="chart chartjs-render-monitor" height="70" width="248" style="display: block; width: 248px; height: 70px;"></canvas> </div> </div> </div> <!--/.col--> <div class="col-sm-12 col-lg-6"> <div class="card text-white bg-warning"> <div class="card-body pb-0"> <div class="btn-group float-right"> <button type="button" class="btn btn-transparent dropdown-toggle p-0" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="fa fa-cog"></i> </button> <div class="dropdown-menu dropdown-menu-right"> <a class="dropdown-item" href="#">Action</a> <a class="dropdown-item" href="#">Another action</a> <a class="dropdown-item" href="#">Something else here</a> </div> </div> <h4 class="mb-0">{{ projects.count }}</h4> <p>Projects</p> </div> <div class="chart-wrapper" style="height:70px;"><div class="chartjs-size-monitor" style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px; overflow: hidden; pointer-events: none; visibility: hidden; z-index: -1;"><div class="chartjs-size-monitor-expand" style="position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1;"><div style="position:absolute;width:1000000px;height:1000000px;left:0;top:0"></div></div><div class="chartjs-size-monitor-shrink" style="position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1;"><div style="position:absolute;width:200%;height:200%;left:0; top:0"></div></div></div> <canvas id="card-chart3" class="chart chartjs-render-monitor" height="70" width="280" style="display: block; width: 280px; height: 70px;"></canvas> </div> </div> </div> <!--/.col--> <div class="col-sm-12 col-lg-6"> <div class="card text-white bg-danger"> <div class="card-body pb-0"> <div class="btn-group float-right"> <button type="button" class="btn btn-transparent dropdown-toggle p-0" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="fa fa-cog"></i> </button> <div class="dropdown-menu dropdown-menu-right"> <a class="dropdown-item" href="#">Action</a> <a class="dropdown-item" href="#">Another action</a> <a class="dropdown-item" href="#">Something else here</a> </div> </div> <h4 class="mb-0">{{ tasks.count }}</h4> <p>Tasks</p> </div> <div class="chart-wrapper px-3" style="height:70px;"><div class="chartjs-size-monitor" style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px; overflow: hidden; pointer-events: none; visibility: hidden; z-index: -1;"><div class="chartjs-size-monitor-expand" style="position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1;"><div style="position:absolute;width:1000000px;height:1000000px;left:0;top:0"></div></div><div class="chartjs-size-monitor-shrink" style="position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1;"><div style="position:absolute;width:200%;height:200%;left:0; top:0"></div></div></div> <canvas id="card-chart4" class="chart chartjs-render-monitor" height="70" width="248" style="display: block; width: 248px; height: 70px;"></canvas> </div> </div> </div> <!--/.col--> </div> <!--/.row--> </div> </div> {% endblock %} |
- Create template for the new project form in Project Management System in Django.
In this section, we will learn on how create a templates for the new project form. To start with, add the following code in your new_project.html under the folder of projects/templates/projects.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
{% extends 'core/base.html' %} {% load staticfiles %} {% block breadcrumb %} <li class="breadcrumb-item">Home</li> <li class="breadcrumb-item">Projects</li> <li class="breadcrumb-item active">New Project</li> {% endblock breadcrumb%} {% block content %} <div class="container animated fadeIn"> <div class="row justify-content-center"> <div class="col-8"> <div class="card-group"> <div class="card p-4 mb-5"> <div class="card-body"> {% if created %} <div class="alert alert-success alert-dismissible fade show" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> Congratulations, your project was created! </div> {% endif %} {% csrf_token %} <h1>Projects</h1> <p class="text-muted">Create your projects here</p> <form action="" method="post"> {% csrf_token %} <div class="form-group"> <div class="input-group"> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-user"></i></span> </div> {{ form.name }} {% if form.name.errors %} <ol> {% for error in form.name.errors %} <li><strong>{{ error|escape }}</strong></li> {% endfor %} </ol> {% endif %} </div> </div> <div class="form-group"> <label class="col-form-label">Assign. <i>Crtl+click for multiple selection</i></label> <div class="input-group"> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-users"></i></span> </div> {{ form.assign }} {% if form.assign.errors %} <ol> {% for error in form.assign.errors %} <li><strong>{{ error|escape }}</strong></li> {% endfor %} </ol> {% endif %} </div> </div> <div class="form-group"> <div class="input-group"> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-calculator"></i></span> </div> {{ form.efforts }} {% if form.efforts.errors %} <ol> {% for error in form.efforts.errors %} <li><strong>{{ error|escape }}</strong></li> {% endfor %} </ol> {% endif %} </div> </div> <div class="form-group"> <label class="col-form-label">Status</label> <div class="input-group"> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-circle"></i></span> </div> {{ form.status }} {% if form.status.errors %} <ol> {% for error in form.status.errors %} <li><strong>{{ error|escape }}</strong></li> {% endfor %} </ol> {% endif %} </div> </div> <div class="form-group"> <label class="col-form-label">Dead Line</label> <div class="input-group"> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-calendar-alt"></i></span> </div> {{ form.dead_line }} </div> {% if form.dead_line.errors %} <ol> {% for error in form.dead_line.errors %} <li><strong>{{ error|escape }}</strong></li> {% endfor %} </ol> {% endif %} </div> <div class="form-group"> <label class="col-form-label">Company</label> <div class="input-group"> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-industry"></i></span> </div> {{ form.company }} </div> {% if form.company.errors %} <ol> {% for error in form.company.errors %} <li><strong>{{ error|escape }}</strong></li> {% endfor %} </ol> {% endif %} </div> <div class="form-group"> <div class="input-group"> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-percent"></i></span> </div> {{ form.complete_per }} </div> {% if form.complete_per.errors %} <ol> {% for error in form.complete_per.errors %} <li><strong>{{ error|escape }}</strong></li> {% endfor %} </ol> {% endif %} </div> <div class="form-group"> <label class="col-form-label">Description</label> <div class="input-group"> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-quote-left"></i></span> </div> {{ form.description }} </div> {% if form.description.errors %} <ol> {% for error in form.description.errors %} <li><strong>{{ error|escape }}</strong></li> {% endfor %} </ol> {% endif %} </div> <div class=""> <button type="submit" class="btn btn-sm btn-success"><i class="fa fa-dot-circle-o"></i> Submit</button> <button type="reset" class="btn btn-sm btn-danger"><i class="fa fa-ban"></i> Reset</button> </div> </form> {{ form.errors }} </div> </div> </div> </div> </div> </div> {% endblock %} |
- Create template for the new task form in Project Management System in Django.
In this section, we will learn on how create a templates for the new task. To start with, add the following code in your new_task.html under the folder of projects/templates/projects.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
{% extends 'core/base.html' %} {% load staticfiles %} {% block breadcrumb %} <li class="breadcrumb-item">Home</li> <li class="breadcrumb-item">Projects</li> <li class="breadcrumb-item active">New Task</li> {% endblock breadcrumb%} {% block content %} <div class="container animated fadeIn"> <div class="row justify-content-center"> <div class="col-7"> <div class="card-group"> <div class="card p-4 mb-5"> <div class="card-body"> {% if created %} <div class="alert alert-success alert-dismissible fade show" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> Congratulations, your task was created! </div> {% endif %} {% csrf_token %} <h1>Tasks</h1> <p class="text-muted">Create your tasks here</p> <form action="" method="post"> {% csrf_token %} <div class="form-group"> <label class="col-form-label">Project</label> <div class="input-group"> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-puzzle-piece"></i></span> </div> {{ form.project }} {% if form.project.errors %} <ol> {% for error in form.project.errors %} <li><strong>{{ error|escape }}</strong></li> {% endfor %} </ol> {% endif %} </div> </div> <div class="form-group"> <label class="col-form-label">Assign. <i>Crtl+click for multiple selection</i></label> <div class="input-group"> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-user"></i></span> </div> {{ form.assign }} {% if form.assign.errors %} <ol> {% for error in form.assign.errors %} <li><strong>{{ error|escape }}</strong></li> {% endfor %} </ol> {% endif %} </div> </div> <div class="form-group"> <label class="col-form-label">Task name</label> <div class="input-group"> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-align-center"></i></span> </div> {{ form.task_name }} {% if form.task_name.errors %} <ol> {% for error in form.task_name.errors %} <li><strong>{{ error|escape }}</strong></li> {% endfor %} </ol> {% endif %} </div> </div> <div class="form-group"> <label class="col-form-label">Status</label> <div class="input-group"> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-circle"></i></span> </div> {{ form.status }} {% if form.status.errors %} <ol> {% for error in form.status.errors %} <li><strong>{{ error|escape }}</strong></li> {% endfor %} </ol> {% endif %} </div> </div> <div class="form-group"> <label class="col-form-label">Due</label> <div class="input-group"> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-calendar"></i></span> </div> {{ form.due }} </div> {% if form.due.errors %} <ol> {% for error in form.due.errors %} <li><strong>{{ error|escape }}</strong></li> {% endfor %} </ol> {% endif %} </div> <div class=""> <button type="submit" class="btn btn-sm btn-success"><i class="fa fa-dot-circle-o"></i> Submit</button> <button type="reset" class="btn btn-sm btn-danger"><i class="fa fa-ban"></i> Reset</button> </div> </form> {{ form.errors }} </div> </div> </div> </div> </div> </div> {% endblock %} |
Downloadable Source Code Below.
Anyway, if you want to level up your programming knowledge, especially python, try this new article I’ve made for you Best Python Projects with source code for Beginners. But If you’re going to focus on web development using Django, you can download here from our list of Best Django Projects with source code based on real-world projects.
How To Run The Project Management System in Django?
- Step 1: Extract/unzip the file
- Step 2: Go inside the project folder, open cmd and type the following commands to install Django Framework and run the webserver:
- pip install -r requirements.txt
- python manage.py migrate
- python manage.py runserver
- Step 3: Finally, open the browser and go to http://127.0.0.1:8000/
Summary
In summary, this 2021 Project Management System in Django with Source Code can be useful to students or professional who wants to learn python programming language. This project can also be modified to fit your personal requirements. Hope this project will help you to improve your skills. Happy Coding!
- How To Make A Point Of Sale System In Python
- Best Python Projects for Beginners
- Python MySQL Connection: Simple Python Step by Step Guide
- Python PIP Command Set-up / Fix: Step by Step Guide
- Random Password Generator in Python Projects With Source Code 2020
- Python Range Function|Range in Python Explained with Examples 2020
- School Management System Project In Django With Source Code
- Django Login And Registration With Source Code
- CRUD App In Django With Source Code
- Drag And Drop JavaScript With Source Code
- Todo List App Django With Source Code
Inquiries
If you have any questions or suggestions about Project Management System in Django with Source Code, please feel free to leave a comment below.
Dear Mr adones evangelista
I’ m newbie in Python and very interesting with you program.
I’m trying install PM project but facing with error as below (I am using VSCode on MAC).
I do look forward to your support
Using cached psycopg2-2.7.4.tar.gz (425 kB)
ERROR: Command errored out with exit status 1:
command: /Library/Frameworks/Python.framework/Versions/3.9/bin/python3 -c ‘import io, os, sys, setuptools, tokenize; sys.argv[0] = ‘”‘”‘/private/var/folders/tb/82z6fw550vnb_8b6qd_d42dm0000gn/T/pip-install-3wya48qg/psycopg2_aa7a45d6a23743bca6fd405a5aaca0a6/setup.py'”‘”‘; __file__='”‘”‘/private/var/folders/tb/82z6fw550vnb_8b6qd_d42dm0000gn/T/pip-install-3wya48qg/psycopg2_aa7a45d6a23743bca6fd405a5aaca0a6/setup.py'”‘”‘;f = getattr(tokenize, ‘”‘”‘open'”‘”‘, open)(__file__) if os.path.exists(__file__) else io.StringIO(‘”‘”‘from setuptools import setup; setup()'”‘”‘);code = f.read().replace(‘”‘”‘\r\n'”‘”‘, ‘”‘”‘\n'”‘”‘);f.close();exec(compile(code, __file__, ‘”‘”‘exec'”‘”‘))’ egg_info –egg-base /private/var/folders/tb/82z6fw550vnb_8b6qd_d42dm0000gn/T/pip-pip-egg-info-hybrthlf
cwd: /private/var/folders/tb/82z6fw550vnb_8b6qd_d42dm0000gn/T/pip-install-3wya48qg/psycopg2_aa7a45d6a23743bca6fd405a5aaca0a6/
Complete output (23 lines):
running egg_info
creating /private/var/folders/tb/82z6fw550vnb_8b6qd_d42dm0000gn/T/pip-pip-egg-info-hybrthlf/psycopg2.egg-info
writing /private/var/folders/tb/82z6fw550vnb_8b6qd_d42dm0000gn/T/pip-pip-egg-info-hybrthlf/psycopg2.egg-info/PKG-INFO
writing dependency_links to /private/var/folders/tb/82z6fw550vnb_8b6qd_d42dm0000gn/T/pip-pip-egg-info-hybrthlf/psycopg2.egg-info/dependency_links.txt
writing top-level names to /private/var/folders/tb/82z6fw550vnb_8b6qd_d42dm0000gn/T/pip-pip-egg-info-hybrthlf/psycopg2.egg-info/top_level.txt
writing manifest file ‘/private/var/folders/tb/82z6fw550vnb_8b6qd_d42dm0000gn/T/pip-pip-egg-info-hybrthlf/psycopg2.egg-info/SOURCES.txt’
Error: pg_config executable not found.
pg_config is required to build psycopg2 from source. Please add the directory
containing pg_config to the $PATH or specify the full executable path with the
option:
python setup.py build_ext –pg-config /path/to/pg_config build …
or with the pg_config option in ‘setup.cfg’.
If you prefer to avoid building psycopg2 from source, please install the PyPI
‘psycopg2-binary’ package instead.
For further information please check the ‘doc/src/install.rst’ file (also at
).
—————————————-
WARNING: Discarding https://files.pythonhosted.org/packages/74/83/51580322ed0e82cba7ad8e0af590b8fb2cf11bd5aaa1ed872661bd36f462/psycopg2-2.7.4.tar.gz#sha256=8bf51191d60f6987482ef0cfe8511bbf4877a5aa7f313d7b488b53189cf26209 (from https://pypi.org/simple/psycopg2/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
ERROR: Could not find a version that satisfies the requirement psycopg2==2.7.4 (from versions: 2.0.10, 2.0.11, 2.0.12, 2.0.13, 2.0.14, 2.2.0, 2.2.1, 2.2.2, 2.3.0, 2.3.1, 2.3.2, 2.4, 2.4.1, 2.4.2, 2.4.3, 2.4.4, 2.4.5, 2.4.6, 2.5, 2.5.1, 2.5.2, 2.5.3, 2.5.4, 2.5.5, 2.6, 2.6.1, 2.6.2, 2.7, 2.7.1, 2.7.2, 2.7.3, 2.7.3.1, 2.7.3.2, 2.7.4, 2.7.5, 2.7.6, 2.7.6.1, 2.7.7, 2.8, 2.8.1, 2.8.2, 2.8.3, 2.8.4, 2.8.5, 2.8.6, 2.9, 2.9.1)
ERROR: No matching distribution found for psycopg2==2.7.4