diff options
Diffstat (limited to 'install')
-rwxr-xr-x | install/ishtar-install | 27 |
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 ""; |