Deploying a Django app on AWS

From Littledamien Wiki
Revision as of 14:21, 6 February 2016 by Video8 (talk | contribs) (→‎Python 3.x)
Jump to navigation Jump to search

Prerequisites

Install Python

Check for python and pip, and their versions:

$ python --verison
$ pip --version

Python 3.x

Python 3.x is often invoked as python3.

$ python3 --verison

If Python 3 is not installed:[1]

$ sudo yum list | grep python3
$ sudo yum install python34 # or relevant version


Notes