brainstorm icon indicating copy to clipboard operation
brainstorm copied to clipboard

OSX installation documentation

Open ericvrp opened this issue 8 years ago • 2 comments

https://github.com/IDSIA/brainstorm/blob/master/docs/installation.rst

Says "Instructions coming soon." for OS X. Any idea when "soon" will be? I'd love to play with brainstorm.

Thanks, Eric

ericvrp avatar Jun 13 '16 18:06 ericvrp

The (non-gpu) OS X installation is similar to Linux one. All apt-get calls can be made in brew (with slightly different names). I haven't tried a GPU installation on OS X yet.

As a side note I recommend installing from github, as the PyPi distribution still contains some small bugs.

sjoerdvansteenkiste avatar Jun 13 '16 21:06 sjoerdvansteenkiste

This is what I did to run a non-gpu OS X version:

repo: https://github.com/IDSIA/brainstorm install docs: https://github.com/IDSIA/brainstorm/blob/master/docs/installation.rst

install brew from: http://brew.sh/ probably install from AppStore: XCode

Let brew detect any problems

brew doctor

Install the essentials for a non-GPU (non-Cuda) version

brew install python
pip install brainstorm

optionally

brew install graphviz
pip install pygraphviz bokeh

try an example

git clone https://github.com/IDSIA/brainstorm
cd brainstorm/data
python create_cifar10.py #took 12 minutes on my machine
cd ../examples
python cifar10_cnn.py # will take 20 x 11:30 (one epoch)

ericvrp avatar Jun 14 '16 19:06 ericvrp