python_wiki:django_install

Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
python_wiki:django_install [2018/07/07 00:20]
billdozor [Django Install]
python_wiki:django_install [2018/07/13 23:30]
billdozor [Django Install]
Line 4: Line 4:
  
 Installing the Django Web Framework 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>
  
  • python_wiki/django_install.txt
  • Last modified: 2019/05/25 23:50
  • (external edit)