Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which python installation should I use?

I'm about to refresh myself in programming and I have decided on Python 2.6 for that. I have searched the net and it gave me two possible installers for download. One is from the Python site and another is from Activestate. Which one should I install on my Windows computer?

like image 976
Marcus TV Avatar asked Jan 24 '10 04:01

Marcus TV


2 Answers

ActiveState gives you paid support. While this may be very important / critical to some companies, most do just fine with python.org version, particularly those who experiment.

There are other crazy ones like Stackless Python, Google's implementation in C++, Cython, etc. I would say that those are not that important to you unless speed / efficient multithreading is a must.

Use the regular one. CPython may be an order of magnitude slower than C, but it works just fine AND it is the most popular Python implementation out there, so you know it is well-tested for a free version.

like image 140
Hamish Grubijan Avatar answered Sep 20 '22 00:09

Hamish Grubijan


I suggest you to download from python site

like image 25
YOU Avatar answered Sep 22 '22 00:09

YOU