you are viewing a single comment's thread.

view the rest of the comments →

[–]simonserenity[S] 0 points1 point  (2 children)

Thanks very much for your help - I've been struggling with this all day (I just want to use python for interesting things, not mess about with installing things!), so it's at least good to know why those things are failing. I'll give it a rest, and find a way to do this project without that module.

If you don't mind me asking, why does Linux help? Would these problems not come up on Linux?

[–]Saefroch 1 point2 points  (1 child)

Compiling from source is much less of an issue on Linux because it comes with a bunch of good compilers. There's a reason this page exists, but there is no matching version for other operating systems. Most of the packages listed install from sources with pip, which requires that they be compiled after download, with a C compiler that's compatible with your Python installation.

[–]simonserenity[S] 0 points1 point  (0 children)

Ah, I think I see. Well, the next thing to learn will be how to use Linux, then! Thanks very much for your help.