2016-06-23 18:58:11 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
set -o xtrace
|
|
|
|
|
|
|
|
wget https://www.python.org/ftp/python/2.7.11/python-2.7.11-macosx10.6.pkg
|
|
|
|
sudo installer -pkg python-2.7.11-macosx10.6.pkg -target /
|
|
|
|
pip install -U pip
|
2016-12-15 23:23:50 +01:00
|
|
|
brew update
|
2016-06-23 18:58:11 +02:00
|
|
|
brew install gmp
|
2016-12-15 23:23:50 +01:00
|
|
|
brew install openssl
|
|
|
|
brew link --force openssl
|