1

I have downloaded pybrain and I want to install it. So, I create a directory Networks and inside the directory of pybrain I use the following command:

$ python setup.py install --prefix == ~/Networks/

And I have the following output:

invalid command name '/Users/petrosypsilantis/Networks/

What exactly is the problem?

Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343

1 Answers1

0

You could try.

pip install pybrain

My answer is to motivate you to move away from setuptools, especially if you are having issues with it. See: Installing specific package versions with pip on how to install a specific development package using pip.

Community
  • 1
  • 1
William Denman
  • 3,046
  • 32
  • 34
  • that do not address OP question about install from source. f.ex. you dev version of a package can't be installed with pip. – alko Nov 26 '13 at 17:20
  • Agreed. But he didn't specify that he **had** to install from source. It is a bit off topic, however I firmly believe in using Pip. – William Denman Nov 26 '13 at 17:22