2019-04-30 22:11:58 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2020-03-14 17:41:56 +00:00
|
|
|
set -ex
|
2020-03-14 17:34:01 +00:00
|
|
|
|
2020-03-15 00:00:01 +00:00
|
|
|
export HOMEBREW_NO_INSTALL_CLEANUP=1
|
|
|
|
|
2020-03-15 12:02:39 +00:00
|
|
|
# Python 3.7.4 with 10.12 bottle
|
2020-03-15 12:06:26 +00:00
|
|
|
brew upgrade https://raw.githubusercontent.com/Homebrew/homebrew-core/e9004bd764c9436750a50e0b428548f68fe6a38a/Formula/python.rb
|
2020-03-15 00:00:01 +00:00
|
|
|
|
2019-04-30 22:11:58 +00:00
|
|
|
which python3
|
|
|
|
python3 --version
|
|
|
|
which pip3
|
|
|
|
pip3 --version
|
2020-03-15 11:53:09 +00:00
|
|
|
|
2020-03-15 10:35:54 +00:00
|
|
|
brew install albertosottile/syncplay/pyside
|
2019-04-30 22:11:58 +00:00
|
|
|
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
|