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