I am new to Python. I am supposed to launch an application and perform some tasks on the application from python. I found Python from python.org and ActivePython from activestate.com, but what is the difference between them? Which should I install?
|
ActiveState is an Open Source Company which bundles Python with some additional packages and makes it available for variety of platforms. Sometimes they support platforms which the standard python distrubution does not. For e.g. AIX comes to my mind. Many beginners to python on Windows have this doubt when they start with Python. ActiveState provides a bundle of Python executable with Python Windows Extensions and PEPS and Dive into Python ebook as package, so that you will have a good solution. Technically there is not any difference between Python from activestate.com and from python.org if it available for download for your platform. And yeah, you can install python 2.7.1 as it is latest supported version in 2.x series. |
|||||||||
|
|
One key difference is that ActivePython comes with a binary package manager called PyPM that makes it easier to install packages like numpy, scipy and lxml. |
|||
|
|
|
ActiveState usually only provides the latest versions of their packages for free, if you need an older version for whatever reason you will have to sign up for one of their paid accounts. Python.org seems to have all their old versions available for download. |
|||
|
|