diff options
author | Melody Horn <melody@boringcactus.com> | 2019-02-26 22:37:23 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2019-02-26 22:37:23 -0700 |
commit | 2dc2b96c045d33a6f98239d3cbef07a28f9091f0 (patch) | |
tree | 7b2e549d3344ab00e4fbef768313c51d1330da44 /scripts | |
parent | 69b4e2ee91361c5ac5d5511145f98f9727d3b0b0 (diff) | |
download | vidslice-2dc2b96c045d33a6f98239d3cbef07a28f9091f0.tar.gz vidslice-2dc2b96c045d33a6f98239d3cbef07a28f9091f0.zip |
why is this just the way my life works now
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/setup_linux.sh | 4 | ||||
-rw-r--r-- | scripts/setup_osx.sh | 1 | ||||
-rw-r--r-- | scripts/setup_windows.sh | 5 |
3 files changed, 9 insertions, 1 deletions
diff --git a/scripts/setup_linux.sh b/scripts/setup_linux.sh index a56e51a..34e5a02 100644 --- a/scripts/setup_linux.sh +++ b/scripts/setup_linux.sh @@ -1,3 +1,5 @@ #!/usr/bin/env bash +set -x + sudo apt-get update -sudo apt-get install -y python3.5 python3-pip libgtk-3-dev libgstreamer1.0-dev libsdl2-dev libwxgtk3.0-dev libglu1-mesa-dev libwxgtk3.0-0 +sudo apt-get install -y python3.5 python3-pip libgtk-3-dev libgstreamer1.0-dev libsdl2-dev diff --git a/scripts/setup_osx.sh b/scripts/setup_osx.sh index f1f641a..e88eeae 100644 --- a/scripts/setup_osx.sh +++ b/scripts/setup_osx.sh @@ -1 +1,2 @@ #!/usr/bin/env bash +set -x diff --git a/scripts/setup_windows.sh b/scripts/setup_windows.sh index b214256..1a69f98 100644 --- a/scripts/setup_windows.sh +++ b/scripts/setup_windows.sh @@ -1,4 +1,9 @@ #!/usr/bin/env bash +set -x + choco install python curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py +echo $PATH +export PATH=/C/Python37:$PATH +which python python get-pip.py |