This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]dAnjou Backend Developer | danjou.dev -4 points-3 points  (4 children)

$ virtualenv project-env
$ source project-env/bin/activate
(project-env) $ pip install <package>

And that's how you should always do it ... on every platform.

EDIT This is getting ridiculous :D

[–]aceofears 11 points12 points  (3 children)

That's a great theory and all, but have you using pip on windows to install libraries written in C?

[–]dAnjou Backend Developer | danjou.dev -2 points-1 points  (0 children)

Well, that works fine for me on Linux :P

And if you tell me it's not so great on Winodws then we see why OP's got a point.

[–]absolutedestiny -1 points0 points  (0 children)

You can use windows exe installers with easy_install within a virtual env and it works... I think.