python_wiki:django_install

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
python_wiki:django_install [2018/07/07 00:19]
billdozor created
python_wiki:django_install [2019/05/25 23:50] (current)
Line 3: Line 3:
 **General Information** **General Information**
  
-Installing Django and its dependencies. +Installing the Django Web Framework and its dependencies.  
 + 
 +\\ 
 +Documentation for the 1.11 LTS Release: https://docs.djangoproject.com/en/1.11/
  
 \\ \\
Line 24: Line 27:
 Install Web Server and Database Install Web Server and Database
   * Install Apache Web Server with mod_wsgi and mod_ssl<code bash>yum install httpd mod_wsgi mod_ssl</code>   * Install Apache Web Server with mod_wsgi and mod_ssl<code bash>yum install httpd mod_wsgi mod_ssl</code>
 +
   * Install MariaDB<code bash>yum install mariadb mariadb-server mariadb-devel</code>   * Install MariaDB<code bash>yum install mariadb mariadb-server mariadb-devel</code>
  
 +\\
 Install Python Environment Install Python Environment
   * Verify Python 2.7<code bash>python -V</code>   * Verify Python 2.7<code bash>python -V</code>
 +
   * Install pip<code bash>wget https://bootstrap.pypa.io/get-pip.py   * Install pip<code bash>wget https://bootstrap.pypa.io/get-pip.py
 python get-pip.py</code> python get-pip.py</code>
 +
   * Install Python interface to MySQL<code bash>pip install mysqlclient</code>   * Install Python interface to MySQL<code bash>pip install mysqlclient</code>
  
Line 38: Line 45:
 Install Django Install Django
 <code bash>pip install Django</code> <code bash>pip install Django</code>
 +
 +----
 +
 +====== Next Steps ======
 +
 +[[python_wiki:django_configuration|Proceed to configuration]].
  
 ---- ----
  
  • python_wiki/django_install.1530937176.txt.gz
  • Last modified: 2019/05/25 23:50
  • (external edit)