summaryrefslogtreecommitdiff
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
commitb29102440f8be152c5f0b7e0632dfb0ead7a524d (patch)
treed1b595b784b134b55ac43ce2ae6cb17bd740b714
parent8d9185a6fa60b16fbf883989935223971ac61be2 (diff)
downloadIshtar-b29102440f8be152c5f0b7e0632dfb0ead7a524d.tar.bz2
Ishtar-b29102440f8be152c5f0b7e0632dfb0ead7a524d.zip
Install: adaptations for raspbian
-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 "";