diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-03-07 18:41:28 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-17 13:21:27 +0200 | 
| commit | 183d073bdfb6e34b482b138790243add8da6cd3f (patch) | |
| tree | 36eeb829120335b640c34bcfbd518d5aa2d1943a | |
| parent | 58b3ede9d5ec2834d3fe7eec8cd620eb908c2e44 (diff) | |
| download | Ishtar-183d073bdfb6e34b482b138790243add8da6cd3f.tar.bz2 Ishtar-183d073bdfb6e34b482b138790243add8da6cd3f.zip | |
Install script: install extra views from pip3
| -rwxr-xr-x | install/ishtar-install | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/install/ishtar-install b/install/ishtar-install index 60636dbd5..9b9fd6c4b 100755 --- a/install/ishtar-install +++ b/install/ishtar-install @@ -398,9 +398,9 @@ EOF                      ( set -x; $sh_c 'sleep 3; apt-get install -y -q \                            python3-django-registration libpangocairo-1.0-0 python3-requests \                            python3-bs4 python3-cffi python3-django-compressor pandoc libjs-jquery\ -                          python3-tidylib python3-lxml python3-imaging python3-html5lib \ +                          python3-tidylib python3-lxml python3-pil python3-html5lib \                            python3-psycopg2 python3-gdal gettext memcached \ -                          python3-django-extra-views python3-memcache python3-dbf python3-markdown \ +                          python3-memcache python3-dbf python3-markdown \                            python3-reportlab python3-django-extensions python3-unidecode' )                  fi                  if [ "$lsb_dist" == 'raspbian' ]; then @@ -423,6 +423,11 @@ EOF                            libreoffice libreoffice-script-provider-python python3-uno' )                  fi +                echo "-------------------------------------------------------------------------------"; +                cecho y "Installing django extra views" +                echo ""; +                ( set -x; $sh_c 'pip3 install django-extra-views==0.12.0' ) +                  # buster: python3-pyqrcode python3-png                  echo "-------------------------------------------------------------------------------";                  cecho y "Installing pyqrcode" | 
