Manage.py not working

783 views
Skip to first unread message

Tanisha Jain

unread,
Jun 20, 2020, 11:42:02 AM6/20/20
to Django users
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?
Screenshot (7).png

ankit baliyan

unread,
Jun 20, 2020, 12:04:58 PM6/20/20
to django...@googlegroups.com
First of all go to test1 folder then run this command.

On Sat, 20 Jun, 2020, 9:11 pm Tanisha Jain, <tanisha...@gmail.com> 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 suggest me what to do now?

--
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...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/6b4c856f-0849-409a-b77a-b31038572aado%40googlegroups.com.

Vishesh Mangla

unread,
Jun 20, 2020, 12:15:04 PM6/20/20
to django...@googlegroups.com

Tanisha Jain

unread,
Jun 20, 2020, 12:23:45 PM6/20/20
to django...@googlegroups.com
I am already in test1 folder... Please check the terminal section in the attached screenshot. 

maninder singh Kumar

unread,
Jun 20, 2020, 12:50:17 PM6/20/20
to django...@googlegroups.com
Have you tried django-admin ?!?


On Sat, Jun 20, 2020 at 9:12 PM Tanisha Jain <tanisha...@gmail.com> 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 suggest me what to do now?

--

Vishesh Mangla

unread,
Jun 20, 2020, 1:02:13 PM6/20/20
to django...@googlegroups.com

Isn’t test1 the ‘name’ that you had put in ‘django-admin startproject  <name>’? Then after this you are supposed to change directory and get into <name> where you find a folder with <name> again. Then you make an app with “python manage.py startapp <appname>” I can’t see any apps there. Also you need to put your ‘appname’ under INSTALLED APPS =[ <name> ,] in settings.py in <name> folder where manage.py is. 

 

Sent from Mail for Windows 10

Vishesh Mangla

unread,
Jun 20, 2020, 1:04:14 PM6/20/20
to django...@googlegroups.com

I meant INSTALLED APPS= [<appname>], a correction.

 

Sent from Mail for Windows 10

 

chaitanya orakala

unread,
Jun 20, 2020, 8:05:15 PM6/20/20
to django...@googlegroups.com
Hi Tanisha,
You are in root directory of project which is test1. you just need to change  your directory into sub-directory which has same name test1.
just do 'ls' command to make sure you have manage.py in that folder. 

Hope this helps!!


Adya Mit

unread,
Jun 21, 2020, 12:22:43 AM6/21/20
to django...@googlegroups.com
Hi Tanisha you check Durga sir video YouTube 

--





Warm Regards
Amit kumar

Saurabh Ranjan Singh

unread,
Jun 21, 2020, 5:31:16 AM6/21/20
to django...@googlegroups.com
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.

Piyush Jangid

unread,
Jun 21, 2020, 1:22:38 PM6/21/20
to django...@googlegroups.com
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, <tanisha...@gmail.com> 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 suggest me what to do now?

--

Raj Patel

unread,
Jun 21, 2020, 2:11:17 PM6/21/20
to django...@googlegroups.com
Use
django-admin startapp app1

On Sat 20 Jun, 2020, 9:11 PM Tanisha Jain, <tanisha...@gmail.com> 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 suggest me what to do now?

--

Piyush Jangid

unread,
Jun 22, 2020, 1:09:29 PM6/22/20
to django...@googlegroups.com
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, <tanisha...@gmail.com> 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 suggest me what to do now?

--

Puneet Makhija

unread,
Jun 22, 2020, 1:40:20 PM6/22/20
to django...@googlegroups.com
Hello piyush sir 
Please reply sir please reply my question 

Oleg Kishenkov

unread,
Jun 23, 2020, 6:33:56 PM6/23/20
to Django users
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 in the manage.py@test1 window and press Enter.

Oleg

Ogunsanya Opeyemi

unread,
Jun 24, 2020, 3:01:56 PM6/24/20
to Django users
Install manage.py using pip

Najath

unread,
Jun 24, 2020, 6:25:20 PM6/24/20
to django...@googlegroups.com
Try python3 manage.py

On Sat, 20 Jun 2020, 9:11 pm Tanisha Jain, <tanisha...@gmail.com> 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 suggest me what to do now?

--

Sainikhil Avula

unread,
Jun 25, 2020, 8:06:52 AM6/25/20
to Django users
Hey Tanisha try this command (django-admin startapp appName)
Reply all
Reply to author
Forward
0 new messages