manuskript/package/prepare_linux.sh
Curtis Gedak 60b6f98c21 Fix Travis CI build error on Linux - pyenv: version `3.6.3' not installed
The Travis CI builds are failing with the following messages:

    pyenv local 3.6.3
    pyenv: version `3.6.3' not installed

Fix by increasing python version to 3.6.7.
2019-07-31 13:06:10 -06:00

12 lines
360 B
Bash
Executable file

#!/bin/bash
set -ev # display each line executed along with output
sudo apt-get -qq update
sudo apt-get -qq install python3-pip python3-dev \
build-essential qt5-default libxml2-dev libxslt1-dev \
mesa-utils libgl1-mesa-glx libgl1-mesa-dev
pyenv local 3.6.7
python --version
easy_install pip
pip install pyqt5==5.9 lxml pytest pytest-faulthandler