summaryrefslogtreecommitdiff
path: root/.travis/before_install.sh
blob: 0ae6249b1170e1d392dd56c8e154983cdd3da846 (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
    sudo easy_install -U pip

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