mirror of https://github.com/Syncplay/syncplay
24 lines
681 B
Bash
Executable File
24 lines
681 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
export HOMEBREW_NO_INSTALL_CLEANUP=1
|
|
brew update
|
|
|
|
# An error occurs when upgrading Python, but appears to be benign, hence the "|| true"
|
|
#
|
|
# Error: undefined method `any?' for nil:NilClass
|
|
# /usr/local/Homebrew/Library/Homebrew/cmd/upgrade.rb:227:in `depends_on'
|
|
brew upgrade python || true
|
|
|
|
which python3
|
|
python3 --version
|
|
which pip3
|
|
pip3 --version
|
|
brew install albertosottile/syncplay/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
|