0

How can I install pybrain on Mac OS X Mountain Lion? I've already installed Python.

Michael Petrotta
  • 59,888
  • 27
  • 145
  • 179
user2585578
  • 295
  • 6
  • 18

1 Answers1

0

Try using the Python package manager pip with the correct permissions:

pip install pybrain

or clone the repo and build the package

git clone git://github.com/pybrain/pybrain.git
python setup.py install
Victor Castillo Torres
  • 10,581
  • 7
  • 40
  • 50