diff options
author | Melody Horn <melody@boringcactus.com> | 2019-02-26 23:55:55 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2019-02-26 23:55:55 -0700 |
commit | 7a42fe6f698845e26419b29f5517f8f42cad0958 (patch) | |
tree | e92cdd5bc201c76aba71da61c1793a1c4f72b954 | |
parent | 6715b3e7c2db387913264a6ae7059bc0efb0cb0d (diff) | |
download | vidslice-7a42fe6f698845e26419b29f5517f8f42cad0958.tar.gz vidslice-7a42fe6f698845e26419b29f5517f8f42cad0958.zip |
try installing things in a different way
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | scripts/setup_linux.sh | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 28cafac..350b64c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ before_install: install: - which python3 && export PYTHON=python3 || export PYTHON=python - echo ${PYTHON} - - ${PYTHON} -m pip install -r requirements.txt + - ${PYTHON} -m pip install -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04/ -r requirements.txt after_success: - ${PYTHON} setup.py build - ls build diff --git a/scripts/setup_linux.sh b/scripts/setup_linux.sh index c87d9c6..f924b1e 100644 --- a/scripts/setup_linux.sh +++ b/scripts/setup_linux.sh @@ -3,6 +3,5 @@ set -x sudo apt-get update sudo apt-get install -y python3 python3-dev python3-pip libgtk2.0-dev libgtk-3-dev libjpeg-dev libtiff-dev libsdl1.2-dev libgstreamer-plugins-base0.10-dev libnotify-dev freeglut3 freeglut3-dev libsm-dev libwebkitgtk-dev libwebkitgtk-3.0-dev -sudo python3 -m pip install -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04/ wxPython==4.0.4 set +x |