Deploying a Django app on AWS: Difference between revisions

From Littledamien Wiki
Jump to navigation Jump to search
No edit summary
Line 26: Line 26:
</syntaxhighlight>
</syntaxhighlight>


== Notes ==
=== See also ===
* [http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create-deploy-python-django.html Deploying a Django Application] - AWS Elastic Beanstalk documentation
* [http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create-deploy-python-common-steps.html Common Steps for Deploying Python Applications] - AWS Elastic Beanstalk documentation
* [http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/installing-python.html Installing Python] - AWS Elastic Beanstalk documentation


== Notes ==
=== References ===
<references />
<references />

Revision as of 14:26, 6 February 2016

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

See also

References