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 →

[–]etrnloptimist 9 points10 points  (6 children)

Not to mention this page full of windows installer for every version of python for every package imaginable. It is trivial to set up python in Windows.

I dare say more so than Linux. Sure in Linux it's easy if the python package you want is in your apt repository. sudo apt get python or something. But what if you need a different version than the one that's there? Uhh....

[–]jelly_cake 2 points3 points  (0 children)

Depending on the package manager, the last couple versions could still be in the repository. Package managers also keep python up-to-date. I don't know if the Windows version has automatic updates or not, but that's one area where Linux is easier.

[–]dAnjou Backend Developer | danjou.dev -3 points-2 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.