Which Linux OS Dist is most python friendly?

-1

0

I am a mid-level python developer interested primarily in creating WSGI-based web apps. I have a working knowledge of *nix but not of sysadmin. I will be working from command line. Which Linux OS distro is most python dev friendly out of:

  • CentOS
  • Debian
  • ubuntu
  • Fedora
  • gentoo

rutherford

Posted 2011-11-30T14:31:25.413

Reputation: 1 041

Question was closed 2011-12-01T01:23:01.017

To be honest, I'm not sure this question makes any sense. Looking forward to the answers. – Daniel Beck – 2011-11-30T14:37:06.130

I'm not sure there's any difference from my point of view, but in case there's more support/compatibility for one over the other I'd like to know before I make the jump. – rutherford – 2011-11-30T14:44:10.150

Answers

1

You can probably do anything python-related from any of the distros you mention, but large parts of Gentoo's infrastructure (including Portage) is built in python, and it contains good tools to, for example, switch the system python interpreter between 2 and 3 series and automatically rebuild python extensions that break when you update python.

Gentoo also has good support for installing many versions of python at the sam time, currently 2.4, 2.5, 2.6, 2.7, 3.1 and 3.2 are available (and presumably maintained) in the official tree (3.2 marked as unstable).

Also, apart from Fedora and Gentoo, all of the mentioned distros ship pretty outdated python versions afaik. (In fact they ship outdated everything.) That might be what you want, or it might not.

Edit: If you want to keep a separate, user-built python install, the choice of distro makes no great difference. Pick the one you like. Gentoo is simple to install wihtout X, so if you only want command line or ssh access in a VM, you'd save a bit of downloading and disk space.

Eroen

Posted 2011-11-30T14:31:25.413

Reputation: 5 615

yum is written in python, which means fedora, redhat, and centos all use python as their cores also. – Sirex – 2011-11-30T15:14:35.370

very useful information thanks, like the support for different python versions, will likely come in handy at some point. My python web server of choice (fapws3) has been tested on gentoo too so I think I'll go with that. – rutherford – 2011-11-30T18:09:43.983

0

There's little differences, also all are linux os, the examples you name are called "distributions". some have python out the box (i think all you mention, possibly except gentoo) but its easy to install or update on all.

Define "python friendly" ?

Sirex

Posted 2011-11-30T14:31:25.413

Reputation: 10 321