Difference between revisions of "Academy"
From Jon's Wiki
(New page: Hizees! We're going to hack on [http://mezzanine.jupo.org/ Mezzanine], a [http://django-project.com/ Django] Content Management System (CMS). == Install Mezzanine == Firstly, install and...) |
|||
Line 1: | Line 1: | ||
− | Hizees! We're going to hack on [http://mezzanine.jupo.org/ Mezzanine], a [http:// | + | Hizees! We're going to hack on [http://mezzanine.jupo.org/ Mezzanine], a [http://djangoproject.com/ Django] Content Management System (CMS). |
== Install Mezzanine == | == Install Mezzanine == | ||
Line 13: | Line 13: | ||
sudo apt-get install python-pip python-imaging pyflakes pep8 python-tz | sudo apt-get install python-pip python-imaging pyflakes pep8 python-tz | ||
+ | |||
+ | Then grab it from github: | ||
+ | |||
+ | git clone <nowiki>https://github.com/stephenmcd/mezzanine.git</nowiki> |
Revision as of 22:48, 14 January 2013
Hizees! We're going to hack on Mezzanine, a Django Content Management System (CMS).
Install Mezzanine
Firstly, install and start a Python virtual environment:
sudo apt-get install python-virtualenv virtualenv mezzanine-env cd mezzanine-env source bin/activate
You should now be in a Python virtual environment. This will isolate your Python libraries from the system's ones in case stuff breaks. Now install some dependencies:
sudo apt-get install python-pip python-imaging pyflakes pep8 python-tz
Then grab it from github:
git clone https://github.com/stephenmcd/mezzanine.git