paperless-ngx/scripts/vagrant-provision
Sharif Nassar 6115b2f03d Add other prerequisites
Vagrant setup didn't work for me unless I manually installed tesseract and ImageMagick.
2016-02-09 01:07:48 -08:00

14 lines
417 B
Bash

#!/bin/bash
# install packages
sudo apt-get update
sudo apt-get build-dep -y python-imaging
sudo apt-get install -y libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev
sudo apt-get install -y build-essential python3-dev python3-pip sqlite3 libsqlite3-dev git
sudo apt-get install -y tesseract-ocr tesseract-ocr-eng imagemagick
# setup python project
pushd /opt/paperless
sudo pip3 install -r requirements.txt
popd