summaryrefslogtreecommitdiff
path: root/.travis/before_install.sh
blob: cfa3fdc3380b29a2ac6e56cc09170db6fdb6e659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

if [[ $TRAVIS_OS_NAME == 'osx' ]]; then

    # Install some custom requirements on OS X
    # e.g. brew install pyenv-virtualenv
    brew update
    brew install python


else
    # Install some custom requirements on Linux
    sudo apt-get update -q
    sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev
fi