syncplay/travis/macos-install.sh
2020-03-14 18:01:28 +00:00

18 lines
434 B
Bash
Executable File

#!/usr/bin/env bash
set -ex
export HOMEBREW_NO_INSTALL_CLEANUP=1
brew update
brew upgrade python
which python3
python3 --version
which pip3
pip3 --version
brew install pyside
python3 -c "from PySide2 import __version__; print(__version__)"
python3 -c "from PySide2.QtCore import __version__; print(__version__)"
pip3 install py2app
python3 -c "from py2app.recipes import pyside2"
pip3 install twisted[tls] appnope requests certifi