Re: Manage.py not working

2020-06-25 Thread Sainikhil Avula
Hey Tanisha try this command (django-admin startapp appName) On Saturday, 20 June 2020 21:12:02 UTC+5:30, Tanisha Jain wrote: > > Hi everyone, > I am new to Django platform. Whenever I am trying to create a new app > using ( python manage.py startapp app1) then I am not able to create app. >

Re: Manage.py not working

2020-06-24 Thread Najath
Try python3 manage.py On Sat, 20 Jun 2020, 9:11 pm Tanisha Jain, wrote: > Hi everyone, > I am new to Django platform. Whenever I am trying to create a new app > using ( python manage.py startapp app1) then I am not able to create app. > Neither I get any error message in logs. Can someone plz s

Manage.py not working

2020-06-24 Thread Ogunsanya Opeyemi
Install manage.py using pip -- 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 django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit

Re: Manage.py not working

2020-06-23 Thread Oleg Kishenkov
Hello, please follow this tutorial https://www.jetbrains.com/help/pycharm/creating-django-project.html, instead of MyDjangoProject type test1. Make sure a virtual environment is created for your project (step 1). Then go to Tools -> Run manage.py Task (or press Ctrl+Alt+r), type startapp app1 i

Re: Manage.py not working

2020-06-22 Thread Puneet Makhija
Hello piyush sir Please reply sir please reply my question On Mon, Jun 22, 2020, 10:39 PM Piyush Jangid wrote: > Try to change the directory of your app i.e try "cd C:// > ../texts1/text1 whatever where your namage.py is and then run command. > Thank you > Piyush jangid > > On Sat, 20 Jun 20

Re: Manage.py not working

2020-06-22 Thread Piyush Jangid
Try to change the directory of your app i.e try "cd C:// ../texts1/text1 whatever where your namage.py is and then run command. Thank you Piyush jangid On Sat, 20 Jun 2020, 9:11 pm Tanisha Jain, wrote: > Hi everyone, > I am new to Django platform. Whenever I am trying to create a new app > u

Re: Manage.py not working

2020-06-21 Thread Raj Patel
Use django-admin startapp app1 On Sat 20 Jun, 2020, 9:11 PM Tanisha Jain, wrote: > Hi everyone, > I am new to Django platform. Whenever I am trying to create a new app > using ( python manage.py startapp app1) then I am not able to create app. > Neither I get any error message in logs. Can some

Re: Manage.py not working

2020-06-21 Thread Piyush Jangid
Please do django-admin startapp app1 in your directory i.e test 1. Your app will be there Thank you On Sat, 20 Jun 2020, 9:11 pm Tanisha Jain, wrote: > Hi everyone, > I am new to Django platform. Whenever I am trying to create a new app > using ( python manage.py startapp app1) then I am not ab

Re: Manage.py not working

2020-06-21 Thread Saurabh Ranjan Singh
Hi Tanisha, Make sure to check your project interpreter set to root python and you have installed django in root python. Try to use virtual environment if possible and install django there. On Sun, 21 Jun, 2020, 9:52 AM Adya Mit, wrote: > Hi Tanisha you check Durga sir video YouTube > > On Sat,

Re: Manage.py not working

2020-06-20 Thread Adya Mit
Hi Tanisha you check Durga sir video YouTube On Sat, 20 Jun 2020 at 9:53 PM, Tanisha Jain wrote: > I am already in test1 folder... Please check the terminal section in the > attached screenshot. > > On Sat, 20 Jun, 2020, 9:34 PM ankit baliyan, > wrote: > >> First of all go to test1 folder then

Re: Manage.py not working

2020-06-20 Thread chaitanya orakala
gla wrote: > I meant INSTALLED APPS= [], a correction. > > > > Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for > Windows 10 > > > > *From: *Vishesh Mangla > *Sent: *20 June 2020 22:31 > *To: *django-users@googlegroups.com > *Subject: *

RE: Manage.py not working

2020-06-20 Thread Vishesh Mangla
I meant INSTALLED APPS= [], a correction. Sent from Mail for Windows 10 From: Vishesh ManglaSent: 20 June 2020 22:31To: django-users@googlegroups.comSubject: RE: Manage.py not working Isn’t test1 the ‘name’ that you had put in ‘django-admin startproject  ’? Then after this you are supposed to

RE: Manage.py not working

2020-06-20 Thread Vishesh Mangla
’ under INSTALLED APPS =[ ,] in settings.py in folder where manage.py is.   Sent from Mail for Windows 10 From: Tanisha JainSent: 20 June 2020 21:53To: django-users@googlegroups.comSubject: Re: Manage.py not working I am already in test1 folder... Please check the terminal section in the attached

Re: Manage.py not working

2020-06-20 Thread maninder singh Kumar
Have you tried django-admin ?!? Maninder Kumar about.me/maninder.s.kumar

Re: Manage.py not working

2020-06-20 Thread Tanisha Jain
I am already in test1 folder... Please check the terminal section in the attached screenshot. On Sat, 20 Jun, 2020, 9:34 PM ankit baliyan, wrote: > First of all go to test1 folder then run this command. > > On Sat, 20 Jun, 2020, 9:11 pm Tanisha Jain, > wrote: > >> Hi everyone, >> I am new to Dj

Re: Manage.py not working

2020-06-20 Thread Vishesh Mangla
https://docs.djangoproject.com/en/3.0/intro/tutorial01/Please follow this. On Sat, Jun 20, 2020 at 9:34 PM ankit baliyan wrote: > First of all go to test1 folder then run this command. > > On Sat, 20 Jun, 2020, 9:11 pm Tanisha Jain, > wrote: > >> Hi everyone, >> I am new to Django platform.

Re: Manage.py not working

2020-06-20 Thread ankit baliyan
First of all go to test1 folder then run this command. On Sat, 20 Jun, 2020, 9:11 pm Tanisha Jain, wrote: > Hi everyone, > I am new to Django platform. Whenever I am trying to create a new app > using ( python manage.py startapp app1) then I am not able to create app. > Neither I get any error

Manage.py not working

2020-06-20 Thread Tanisha Jain
Hi everyone, I am new to Django platform. Whenever I am trying to create a new app using ( python manage.py startapp app1) then I am not able to create app. Neither I get any error message in logs. Can someone plz suggest me what to do now? -- You received this message because you are subscri