Conflict with Django startproject command, when installing DRF 3.15.2 (pulling Django 4.2.16) #9549
Unanswered
ivanleoncz
asked this question in
Question & Answer
Replies: 1 comment
-
That's because you're using Python 3.8, and Django 4.2 is the latest version to support it: https://docs.djangoproject.com/en/5.1/faq/install/#what-python-version-can-i-use-with-django
You should use Python 3.10 or later if you want to install a more modern version of Djnago. It has nothing to do with DRF, you should be able to reproduce the problem with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm preparing a demo of DRF to a developer which I'm mentoring, showing the basics, etc. By installing DRF, it automatically pulls
Django
package along, thus allowing me to first create a project, through (for example)django-admin startproject tutorial
.I'm installing DRF 3.15.2 (automatically pulling Django 4.2.16).
For some reason, creating a project with name
tutorial
, results in conflict:The same doesn't happen when using version 3.15:
I have a feeling that something is messed up here with my environment, but I wanted to check here as well, and count with some recommendation.
Thanks,
Beta Was this translation helpful? Give feedback.
All reactions