How can I install pybrain on Mac OS X Mountain Lion? I've already installed Python.
Asked
Active
Viewed 1,099 times
0
-
2Michael Petrotta, I love your editing style. – BLaZuRE Jul 16 '13 at 02:22
-
Have you tried the basic pip install? Seriously, without knowing what you've tried, I can't decide what answers to eliminate from suggesting to you – inspectorG4dget Jul 16 '13 at 02:22
-
all i did was to set up and install Python 2.7.5 from python homepage. – user2585578 Jul 18 '13 at 17:53
1 Answers
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
-
thanks for help, but it says pip command was not found. Does anybody know what this means? – user2585578 Jul 18 '13 at 17:52
-
And when I included sudo before pip, the message like this came out: – user2585578 Jul 18 '13 at 17:54
-
WARNING: Improper use of the sudo command could lead to data loss or the deletion of important system files. Please double-check your typing when using sudo. Type "man sudo" for more information. To proceed, enter your password, or type Ctrl-C to abort. – user2585578 Jul 18 '13 at 17:55
-
and then there was password to be typed, but it was not even typed at all. I think I am stuck somewhere – user2585578 Jul 18 '13 at 17:56
-
Oh yeah you va to install pip to install it do this `sudo easy_install pip ` – Victor Castillo Torres Jul 18 '13 at 17:58
-
Thanks, but again, another warning message, and the password thing came out – user2585578 Jul 18 '13 at 18:34