summaryrefslogtreecommitdiff
path: root/.travis/before_install.sh
blob: 60d1dcf6699aaebe4ef9e33af69f74f29a573c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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
    echo do othing


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