vote up 0 vote down star

I need to use easy_install to install a package. I installed the enthought distribution, and popped into IDLE to say:

>>> easy_install SQLobject
SyntaxError: invalid syntax

What am I doing wrong? easy_install certainly exists, as does the package. help('easy_install') gives me some basic help. import easy_install doesn't change things either.

Any hints? I know I'm missing something really basic here.

flag
Don't forget to check the accepted answer. – S.Lott Mar 8 at 23:39
I've clarified your question title. Can we please stop using the words "fail", "win" and "so much awesome", they're not funny and they're really annoying when they're peppered through questions. – Soviut Mar 9 at 3:03

1 Answer

vote up 5 vote down

easy_install is a shell command. You don't need to put it in a python script.

easy_install SQLobject

Type that straight into a bash (or other) shell, as long as easy_install is in your path.

link|flag
Hm, I must have no idea what I'm doing to confuse them that much. Thanks, that works great! – Anonymous Mar 8 at 23:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.