Alex Grs
Alex Grs

Reputation: 3301

Django 1.5 : Python 2.7 or Python 3

Django just release their 1.5 version.

It now supports Python 3, my question is quite simple indeed: With this 1.5 Version, should I still use Python 2.7 or Python 3 ? I assume that with Python 3 there will be some issues with 3rd parties app no ?

In your case, what would you do ?

Upvotes: 1

Views: 302

Answers (3)

Efrin
Efrin

Reputation: 2423

I would still use python 2.7 because many apps and libraries are not ready for python 3.x

PIL is not working correctly with python 3

Upvotes: 0

Rob Agar
Rob Agar

Reputation: 12447

If I was starting a new development which I didn't expect to go live until well after version 1.6 is released (when Python 3 support is supposed to be production ready, and hopefully the 3rd party apps have caught up) , then yes, I would go with Python 3. It is significantly cleaner than Python 2.7.

But if you want your site up and running in the near future, stick with 2.7.

Upvotes: 0

Daniel Roseman
Daniel Roseman

Reputation: 599450

The release notes state clearly that Python 3 support in 1.5 is experimental. And yes, third-party apps will be a problem.

Upvotes: 5

Related Questions