added python/dependencies install script

This commit is contained in:
2015-09-13 13:00:30 +01:00
parent d2cedec3de
commit 218c91acd1
2 changed files with 18 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
# Install xcode command line tools
xcode-select --install
# Download project
./get_project.sh
cd FYP_Max_prototype
# Install Homebrew package manager
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install gcc for fortran compilation
brew install gcc
# Install libsndfile
brew install libsndfile
# Install python via homebrew
brew install python
# Install freetype package required for matplotlib section of python installation
brew install freetype
# set up python component of project
./setup_python.sh
+1 -1
View File
@@ -5,4 +5,4 @@ pip install virtualenv
virtualenv ./
source ./bin/activate
pip install numpy
pip install -e ./
pip -v install -e ./