Re: New User of Django

2023-11-17 Thread utibe solomon
You just have to search Django up and follow it's documentation or search it on youtube On Wed, Nov 15, 2023, 4:31 PM Yonis Abdulkadir wrote: > I need you to give me an explanation about how i can install and use it > thank you so much > > -- > You received this message because you are

Re: New User of Django

2023-11-15 Thread 'Kasper Laudrup' via Django users
On 15/11/2023 13.57, Yonis Abdulkadir wrote: I need you to give me an explanation about how i can install and use it thank you so much https://docs.djangoproject.com/en/4.2/intro/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: New User of Django

2023-11-15 Thread Lutaaya Jamil
You have python? Google django, and follow the instructions or you can follow mosh here, I learnt from him though it was years back https://youtu.be/rHux0gMZ3Eg On Wednesday, 15 November 2023 at 18:32:39 UTC+3 Yonis Abdulkadir wrote: > I need you to give me an explanation about how i can

New User of Django

2023-11-15 Thread Yonis Abdulkadir
I need you to give me an explanation about how i can install and use it thank you so much -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: How to create a new user with django rest framework and custom user model

2017-03-26 Thread Andréas Kühne
I am getting this error: > > *Got a TypeError when calling User.objects.create(). This may be because >> you have a writable field on the serializer class that is not a valid >> argument to User.objects.create(). You may need to make the field >> read-only, or override the Use

How to create a new user with django rest framework and custom user model

2017-03-26 Thread Aamu Padi
). You may need to make the field > read-only, or override the UserSerializer.create() method to handle this > correctly.* This maybe because there's no password1 or password2 fields in the User model. But so, how can I create an API to create a new user using django-rest-framework? --