Skip to content Skip to sidebar Skip to footer

What Python 3 Version For My Django Project

I will try to port my Python 2.7 with Django to Python 3. But now my question is what version is the most stable one today? I've heard people use 3.2 and 3.4 and recommend it. But

Solution 1:

If you go to their downloads page, you will find the following statement (my emphasis):

We recommend using the latest version of Python 3 [...]

I've been using Python 3.4.3+ in a Django 1.8.2 project without issues and I don't see why you should run into problems here.

However, if you do run into issues, you should file a bug.

What version is the most stable one today?

Whatever version shows up as the recommended download in the python homepage should be considered stable. If that happens to be v3.5, then you should use that.

Solution 2:

Python's version are quite stable, but you have to check is virtualenv on your OS is handled already by particular Python's version eg. 3.5.0 is not yet prepared for it. I recommend you 3.4.x, which I use on my own without any problems.

Solution 3:

You may check for 'What Python version can I use with Django?' in official documentation here and here faq which lists which Python version is supported to which Django version

Post a Comment for "What Python 3 Version For My Django Project"