Re: Django error while running

2023-04-04 Thread 'JOSE GONZALEZ SANCHEZ' via Django users
That worked for me Thanks! El lunes, 27 de marzo de 2023 a las 20:02:03 UTC+2, Makan Dianka escribió: > Run this command> pip install -r requirements.txt > > Le mercredi 22 mars 2023 à 13:53:15 UTC+1, James Kalu a écrit : > >> I think it ushould be 'rest_framework' in settings.py under installed

Re: Django error while running

2023-03-27 Thread Makan Dianka
Run this command> pip install -r requirements.txt Le mercredi 22 mars 2023 à 13:53:15 UTC+1, James Kalu a écrit : > I think it ushould be 'rest_framework' in settings.py under installed apps. > > > On Wednesday, March 22, 2023 at 4:50:30 AM UTC+3 David Nugent wrote: > >> Any traceback with this a

Re: Django error while running

2023-03-22 Thread James Kalu
I think it ushould be 'rest_framework' in settings.py under installed apps. On Wednesday, March 22, 2023 at 4:50:30 AM UTC+3 David Nugent wrote: > Any traceback with this at the end: > > _bootstrap._gcd_import(name[level..], package, level) > > Is almost always is due to a problem with your se

Re: Django error while running

2023-03-22 Thread Chandresh . T
I just added apps and templates, static file locations. On Wed, 22 Mar 2023 at 17:36, Ahmad Abdulnasir Shuaib < ahmadabdulnas...@gmail.com> wrote: > It looks like you mistakenly alter your settings, check your > INSTALLED_APPS in settings.py > > ModuleNotFoundError: No module named 'rest_framewo

Re: Django error while running

2023-03-22 Thread Ahmad Abdulnasir Shuaib
It looks like you mistakenly alter your settings, check your INSTALLED_APPS in settings.py ModuleNotFoundError: No module named 'rest_frameworkdjango' There should be a comma between rest_framework and django On Wed, Mar 22, 2023, 12:18 PM Chandresh . T wrote: > Hello all! This is the setting

Re: Django error while running

2023-03-22 Thread Chandresh . T
Hello all! This is the setting file of the project and I actually installed requirement.txt already. In that it said "already installed rest_framework" but while running it shows an error that no module called rest_framework is installed. On Wed, 22 Mar 2023 at 07:20, David Nugent wrote: > Any t

Re: Django error while running

2023-03-21 Thread David Nugent
Any traceback with this at the end: _bootstrap._gcd_import(name[level..], package, level) Is almost always is due to a problem with your settings INSTALLED_APPS, particularly if django\apps\registry.py Is further up the trace. A missing comma between items, perhaps? It would indeed be nice

Re: Django error while running

2023-03-21 Thread Prosper Lekia
If the clone project has a requirements.txt file, you can run pip install requirements.txt. Else, install Django rest_framework in your virtual environment. On Tue, Mar 21, 2023, 17:06 oba stephen wrote: > Can you share the content of your settings file? The installed apps in > particular... > >

Re: Django error while running

2023-03-21 Thread oba stephen
Can you share the content of your settings file? The installed apps in particular... On Tue, 21 Mar 2023, 16:05 Chandresh . T, wrote: > Recently I was running a git clone ( > https://github.com/divanov11/StudyBud.git) > > after doing required steps like migrations, etc. I started to run it by >

Django error while running

2023-03-21 Thread Chandresh . T
Recently I was running a git clone ( https://github.com/divanov11/StudyBud.git) after doing required steps like migrations, etc. I started to run it by (python manage.py runserver) but I got this error. can anyone help me with this, please? Thanks in advance! PS C:\Users\chand\OneDrive\Desktop\