summaryrefslogtreecommitdiff
path: root/install/ishtar-install
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-06-18 17:51:13 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-06-18 17:51:29 +0200
commit413edba4217062ecbaa53fe05e3649a740ba0ffb (patch)
treed1b595b784b134b55ac43ce2ae6cb17bd740b714 /install/ishtar-install
parentcbe1ea34243d847d572a5733f51de8f7d7fe8235 (diff)
downloadIshtar-413edba4217062ecbaa53fe05e3649a740ba0ffb.tar.bz2
Ishtar-413edba4217062ecbaa53fe05e3649a740ba0ffb.zip
Install: adaptations for raspbian
Diffstat (limited to 'install/ishtar-install')
-rwxr-xr-xinstall/ishtar-install27
1 files changed, 19 insertions, 8 deletions
diff --git a/install/ishtar-install b/install/ishtar-install
index 13af91b92..fb938b02c 100755
--- a/install/ishtar-install
+++ b/install/ishtar-install
@@ -411,17 +411,28 @@ EOF
if [ "$lsb_dist" == 'debian' ]; then
( set -x; $sh_c 'sleep 3; apt-get install -t stretch-backports -y -q python-django' )
+ ( set -x; $sh_c 'sleep 3; apt-get install -y -q \
+ python-django-registration libpangocairo-1.0-0 python-requests \
+ python-bs4 python-cffi python-django-compressor \
+ python-tidylib python-lxml python-imaging python-html5lib \
+ python-psycopg2 python-gdal gettext python-unicodecsv memcached \
+ python-django-extra-views python-memcache python-dbf python-markdown \
+ python-reportlab python-django-extensions python-unidecode' )
fi
if [ "$lsb_dist" == 'raspbian' ]; then
- ( set -x; $sh_c 'pip install django==1.11' )
+ ( set -x; $sh_c 'pip install django==1.11 \
+ django-registration==2.2' \
+ django-compressor==2.1 \
+ django-extra-views==0.2.4 \
+ django-extensions==1.7.4 )
+ ( set -x; $sh_c 'sleep 3; apt-get install -y -q \
+ libpangocairo-1.0-0 python-requests \
+ python-bs4 python-cffi \
+ python-tidylib python-lxml python-imaging python-html5lib \
+ python-psycopg2 python-gdal gettext python-unicodecsv memcached \
+ python-memcache python-dbf python-markdown \
+ python-reportlab python-unidecode' )
fi
- ( set -x; $sh_c 'sleep 3; apt-get install -y -q \
- python-django-registration libpangocairo-1.0-0 python-requests \
- python-bs4 python-cffi python-django-compressor \
- python-tidylib python-lxml python-imaging python-html5lib \
- python-psycopg2 python-gdal gettext python-unicodecsv memcached \
- python-django-extra-views python-memcache python-dbf python-markdown \
- python-reportlab python-django-extensions python-unidecode' )
echo "-------------------------------------------------------------------------------";
cecho y "Installing django-simple-history"
echo "";