blob: ec0e0ab1dba6f69519037bc0850bb25fca351197 [file] [log] [blame]
Siobhan Tullybef01da2014-01-11 11:35:04 -05001#!/bin/sh
2yum -y install postgresql postgresql-server
3yum -y install python-psycopg2
4yum -y install graphviz
5yum -y install graphviz-devel
6yum -y install graphviz-python
7yum -y install libxslt-devel
8yum -y install python-pip
9yum -y install wget
10yum -y install tar
11yum -y install gcc
12yum -y install libxml2-dev
13yum -y install libxslt1-dev
14yum -y install python-devel
15
16
17pip-python install django==1.5
18pip-python install djangorestframework
19pip-python install markdown # Markdown support for the browseable API.
20pip-python install pyyaml # YAML content-type support.
21pip-python install django-filter # Filtering support
22pip-python install lxml # XML manipulation library
23pip-python install netaddr # IP Addr library
24pip-python install pytz
25pip-python install django-timezones
26pip-python install requests
27pip-python install django-crispy-forms
28pip-python install django-geoposition
29pip-python install django-extensions
30pip-python install django-suit
31pip-python install django-evolution
32pip-python install docutils
33pip-python install cython
34pip-python install bitfield
35pip-python install pygments
36
37easy_install django_evolution
38
39wget http://phantomjs.googlecode.com/files/phantomjs-1.7.0-linux-x86_64.tar.bz2
40
41mv ./phantomjs-1.7.0-linux-x86_64.tar.bz2 /usr/local/share
42
43cd /usr/local/share
44
45tar xvf phantomjs-1.7.0-linux-x86_64.tar.bz2
46
47ln -s /usr/local/share/phantomjs-1.7.0-linux-x86_64 /usr/local/share/phantomjs
48
49ln -s /usr/local/share/phantomjs/bin/phantomjs /usr/local/bin/phantomjs
50
51phantomjs --version
52