summaryrefslogtreecommitdiff
path: root/.travis/before_install.sh
blob: edd6eeef475f88cd8a6687399fe0a7bbb0abe000 (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