Re: Missing manage.py & settings.py

2019-03-09 Thread Andréas Kühne
If you have added an app via pip install and added it to settings.py, you
should not create an app with startapp - and you should definitely not
create an app with the same name as a pip installed django app. That will
result in conflicts.

In this case startapp shouldn't be used no.

Regards,

Andréas


Den lör 9 mars 2019 kl 00:53 skrev lujate :

> I know what startapp is for. I'm just wondering why it's applicable here.
>
> To recap, I have a 3rd party Django app that I need to pip install. I
> created a project to contain the app. When I add the app to installed apps
> in my settings,  Django errors on start up.
>
> If startapp is still required for a pip installed app, I can do that
> easily enough. Does it matter the name of the app I create? I'm afraid I'll
> have a conflict if I use the same name as the pip installed app.
>
> Thanks
>
> On Fri, Mar 8, 2019, 2:46 AM Andréas Kühne 
> wrote:
>
>> The reason you have startapp in django-admin is because you might want to
>> start a new part of your project from scratch. For example if you are
>> selling ice-cream online and have models for ice-creams in the ice_cream
>> app and you want to start selling cupcakes as well, you can then start a
>> new app called cupcakes that has the templates, models and views for
>> cupcakes.
>>
>> Regards,
>>
>> Andréas
>>
>>
>> Den fre 8 mars 2019 kl 03:13 skrev lujate :
>>
>>> I'm sorry,  I don't understand what you're trying to say.
>>>
>>> On Thu, Mar 7, 2019, 12:23 AM Gil Obradors >> wrote:
>>>
 For create it  yourself from 0

 El dj., 7 de març 2019, 01:05, lujate  va
 escriure:

> What purpose does startapp serve when you're only using a pip
> installed app?
>
>
>
> On Wed, Mar 6, 2019, 11:12 AM ambesh chand shahi  wrote:
>
>> You should first type django-admin startproject "your project name".
>>
>> Then if you are using python3 then type python3 manage.py startapp
>> "appname".
>>
>> After that include that app in settings.py in Installed apps.
>>
>>
>> On Tue, 5 Mar 2019, 07:29 lujate,  wrote:
>>
>>> I created a scratch project for R
>>> I did a runserver and confirmed the default landing page.
>>> I added the apps to the settings file per the docs.
>>> I ran a migrate per the docs and got an error on one of the apps.
>>> I tried a runserver and got the same error.
>>> I dug into site-packages and confirmed the app was there.
>>>
>>> I added multiple apps, and there's only an error on one. I don't
>>> know if that's because the others are fine,  or it just stopped at the
>>> first error.
>>>
>>> Thanks
>>>
>>> On Mon, Mar 4, 2019, 6:59 PM Mario Martinez >> wrote:
>>>
 Did you run the django-admin startproject your_project_name command?

 On Fri, Mar 1, 2019, 6:13 PM lujate  wrote:

> I pip installed a Django project, but it doesn’t have a manage.py
> or settings.py.  I checked the repo on GitHub, and those files don’t 
> exist
> there either.  Is this an alternate way of doing a Django project 
> that I’m
> not aware of?
>
> FWIW, the project is django-wiki.
>
> TIA
>
> --
> 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 post to this group, send email to django-users@googlegroups.com
> .
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/30fc5fdc-6bd6-4807-99ff-c41e6e109642%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.
>
 --
 You received this message because you are subscribed to a topic in
 the Google Groups "Django users" group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/django-users/UNcOwcHuox8/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to
 django-users+unsubscr...@googlegroups.com.
 To post to this group, send email to django-users@googlegroups.com.
 Visit this group at https://groups.google.com/group/django-users.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAOXNLNvP-vePzZj1zEeN-kVRiBPwEk_A6x64aJ0Y312uaegE3w%40mail.gmail.com
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> --
>>> You 

Re: Missing manage.py & settings.py

2019-03-08 Thread Sithembewena L. Dube
Understand the difference between a project and an app. See "Projects vs.
apps" at the following link (correct for current version).

https://docs.djangoproject.com/en/2.1/intro/tutorial01/

Kind regards,
Sithembewena


*Sent with Shift
*

On Sat, Mar 9, 2019 at 7:07 AM  wrote:

> after installing django inside virtual environment write following
> commands:
> django-admin startproject "you_project_name"
> go inside this folder and then type
> python manage.py startapp "your app name"
> this command will create apps
> and after this include your app inside installed apps
>
> On Saturday, March 2, 2019 at 6:44:05 AM UTC+5:30, jtaylor___ wrote:
>>
>> I pip installed a Django project, but it doesn’t have a manage.py or
>> settings.py.  I checked the repo on GitHub, and those files don’t exist
>> there either.  Is this an alternate way of doing a Django project that I’m
>> not aware of?
>>
>> FWIW, the project is django-wiki.
>>
>> TIA
>
> --
> 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 post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/42aed5a2-018d-4f3b-b4b4-0e6430f03be8%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH-SnCATnr-oydCmM5KgGLc9xuQG31zjtV4_savd35TNAB3MWg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing manage.py & settings.py

2019-03-08 Thread gauravsrivastava2k17
after installing django inside virtual environment write following commands:
django-admin startproject "you_project_name"
go inside this folder and then type
python manage.py startapp "your app name"
this command will create apps
and after this include your app inside installed apps

On Saturday, March 2, 2019 at 6:44:05 AM UTC+5:30, jtaylor___ wrote:
>
> I pip installed a Django project, but it doesn’t have a manage.py or 
> settings.py.  I checked the repo on GitHub, and those files don’t exist 
> there either.  Is this an alternate way of doing a Django project that I’m 
> not aware of? 
>
> FWIW, the project is django-wiki. 
>
> TIA

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/42aed5a2-018d-4f3b-b4b4-0e6430f03be8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing manage.py & settings.py

2019-03-08 Thread lujate
I know what startapp is for. I'm just wondering why it's applicable here.

To recap, I have a 3rd party Django app that I need to pip install. I
created a project to contain the app. When I add the app to installed apps
in my settings,  Django errors on start up.

If startapp is still required for a pip installed app, I can do that easily
enough. Does it matter the name of the app I create? I'm afraid I'll have a
conflict if I use the same name as the pip installed app.

Thanks

On Fri, Mar 8, 2019, 2:46 AM Andréas Kühne 
wrote:

> The reason you have startapp in django-admin is because you might want to
> start a new part of your project from scratch. For example if you are
> selling ice-cream online and have models for ice-creams in the ice_cream
> app and you want to start selling cupcakes as well, you can then start a
> new app called cupcakes that has the templates, models and views for
> cupcakes.
>
> Regards,
>
> Andréas
>
>
> Den fre 8 mars 2019 kl 03:13 skrev lujate :
>
>> I'm sorry,  I don't understand what you're trying to say.
>>
>> On Thu, Mar 7, 2019, 12:23 AM Gil Obradors >
>>> For create it  yourself from 0
>>>
>>> El dj., 7 de març 2019, 01:05, lujate  va
>>> escriure:
>>>
 What purpose does startapp serve when you're only using a pip installed
 app?



 On Wed, Mar 6, 2019, 11:12 AM ambesh chand shahi >>> wrote:

> You should first type django-admin startproject "your project name".
>
> Then if you are using python3 then type python3 manage.py startapp
> "appname".
>
> After that include that app in settings.py in Installed apps.
>
>
> On Tue, 5 Mar 2019, 07:29 lujate,  wrote:
>
>> I created a scratch project for R
>> I did a runserver and confirmed the default landing page.
>> I added the apps to the settings file per the docs.
>> I ran a migrate per the docs and got an error on one of the apps.
>> I tried a runserver and got the same error.
>> I dug into site-packages and confirmed the app was there.
>>
>> I added multiple apps, and there's only an error on one. I don't know
>> if that's because the others are fine,  or it just stopped at the first
>> error.
>>
>> Thanks
>>
>> On Mon, Mar 4, 2019, 6:59 PM Mario Martinez > wrote:
>>
>>> Did you run the django-admin startproject your_project_name command?
>>>
>>> On Fri, Mar 1, 2019, 6:13 PM lujate  wrote:
>>>
 I pip installed a Django project, but it doesn’t have a manage.py
 or settings.py.  I checked the repo on GitHub, and those files don’t 
 exist
 there either.  Is this an alternate way of doing a Django project that 
 I’m
 not aware of?

 FWIW, the project is django-wiki.

 TIA

 --
 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 post to this group, send email to django-users@googlegroups.com.
 Visit this group at https://groups.google.com/group/django-users.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/30fc5fdc-6bd6-4807-99ff-c41e6e109642%40googlegroups.com
 .
 For more options, visit https://groups.google.com/d/optout.

>>> --
>>> You received this message because you are subscribed to a topic in
>>> the Google Groups "Django users" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/django-users/UNcOwcHuox8/unsubscribe
>>> .
>>> To unsubscribe from this group and all its topics, send an email to
>>> django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAOXNLNvP-vePzZj1zEeN-kVRiBPwEk_A6x64aJ0Y312uaegE3w%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> 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 post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> 

Re: Missing manage.py & settings.py

2019-03-08 Thread Andréas Kühne
The reason you have startapp in django-admin is because you might want to
start a new part of your project from scratch. For example if you are
selling ice-cream online and have models for ice-creams in the ice_cream
app and you want to start selling cupcakes as well, you can then start a
new app called cupcakes that has the templates, models and views for
cupcakes.

Regards,

Andréas


Den fre 8 mars 2019 kl 03:13 skrev lujate :

> I'm sorry,  I don't understand what you're trying to say.
>
> On Thu, Mar 7, 2019, 12:23 AM Gil Obradors 
>> For create it  yourself from 0
>>
>> El dj., 7 de març 2019, 01:05, lujate  va
>> escriure:
>>
>>> What purpose does startapp serve when you're only using a pip installed
>>> app?
>>>
>>>
>>>
>>> On Wed, Mar 6, 2019, 11:12 AM ambesh chand shahi >> wrote:
>>>
 You should first type django-admin startproject "your project name".

 Then if you are using python3 then type python3 manage.py startapp
 "appname".

 After that include that app in settings.py in Installed apps.


 On Tue, 5 Mar 2019, 07:29 lujate,  wrote:

> I created a scratch project for R
> I did a runserver and confirmed the default landing page.
> I added the apps to the settings file per the docs.
> I ran a migrate per the docs and got an error on one of the apps.
> I tried a runserver and got the same error.
> I dug into site-packages and confirmed the app was there.
>
> I added multiple apps, and there's only an error on one. I don't know
> if that's because the others are fine,  or it just stopped at the first
> error.
>
> Thanks
>
> On Mon, Mar 4, 2019, 6:59 PM Mario Martinez  wrote:
>
>> Did you run the django-admin startproject your_project_name command?
>>
>> On Fri, Mar 1, 2019, 6:13 PM lujate  wrote:
>>
>>> I pip installed a Django project, but it doesn’t have a manage.py or
>>> settings.py.  I checked the repo on GitHub, and those files don’t exist
>>> there either.  Is this an alternate way of doing a Django project that 
>>> I’m
>>> not aware of?
>>>
>>> FWIW, the project is django-wiki.
>>>
>>> TIA
>>>
>>> --
>>> 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 post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/30fc5fdc-6bd6-4807-99ff-c41e6e109642%40googlegroups.com
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> You received this message because you are subscribed to a topic in
>> the Google Groups "Django users" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/django-users/UNcOwcHuox8/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to
>> django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAOXNLNvP-vePzZj1zEeN-kVRiBPwEk_A6x64aJ0Y312uaegE3w%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAA4ZjbSQQP-X6jmaYxGNCjtoSzWTG-ZdwXohYwJv-yo6-2Gwqw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
 --
 You received this message because you are subscribed to a topic in the
 Google Groups "Django users" group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/django-users/UNcOwcHuox8/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 django-users+unsubscr...@googlegroups.com.
 To 

Re: Missing manage.py & settings.py

2019-03-07 Thread lujate
I'm sorry,  I don't understand what you're trying to say.

On Thu, Mar 7, 2019, 12:23 AM Gil Obradors  For create it  yourself from 0
>
> El dj., 7 de març 2019, 01:05, lujate  va
> escriure:
>
>> What purpose does startapp serve when you're only using a pip installed
>> app?
>>
>>
>>
>> On Wed, Mar 6, 2019, 11:12 AM ambesh chand shahi > wrote:
>>
>>> You should first type django-admin startproject "your project name".
>>>
>>> Then if you are using python3 then type python3 manage.py startapp
>>> "appname".
>>>
>>> After that include that app in settings.py in Installed apps.
>>>
>>>
>>> On Tue, 5 Mar 2019, 07:29 lujate,  wrote:
>>>
 I created a scratch project for R
 I did a runserver and confirmed the default landing page.
 I added the apps to the settings file per the docs.
 I ran a migrate per the docs and got an error on one of the apps.
 I tried a runserver and got the same error.
 I dug into site-packages and confirmed the app was there.

 I added multiple apps, and there's only an error on one. I don't know
 if that's because the others are fine,  or it just stopped at the first
 error.

 Thanks

 On Mon, Mar 4, 2019, 6:59 PM Mario Martinez >>> wrote:

> Did you run the django-admin startproject your_project_name command?
>
> On Fri, Mar 1, 2019, 6:13 PM lujate  wrote:
>
>> I pip installed a Django project, but it doesn’t have a manage.py or
>> settings.py.  I checked the repo on GitHub, and those files don’t exist
>> there either.  Is this an alternate way of doing a Django project that 
>> I’m
>> not aware of?
>>
>> FWIW, the project is django-wiki.
>>
>> TIA
>>
>> --
>> 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 post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/30fc5fdc-6bd6-4807-99ff-c41e6e109642%40googlegroups.com
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Django users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/django-users/UNcOwcHuox8/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAOXNLNvP-vePzZj1zEeN-kVRiBPwEk_A6x64aJ0Y312uaegE3w%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
 --
 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 post to this group, send email to django-users@googlegroups.com.
 Visit this group at https://groups.google.com/group/django-users.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAA4ZjbSQQP-X6jmaYxGNCjtoSzWTG-ZdwXohYwJv-yo6-2Gwqw%40mail.gmail.com
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> --
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "Django users" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/django-users/UNcOwcHuox8/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to
>>> django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CA%2BM-f1c2ycqtZ4i%3DPBs6nS6n9MP6FV959XdmmtGBOb3Sn%3DO5yg%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --

Re: Missing manage.py & settings.py

2019-03-06 Thread Gil Obradors
For create it  yourself from 0

El dj., 7 de març 2019, 01:05, lujate  va escriure:

> What purpose does startapp serve when you're only using a pip installed
> app?
>
>
>
> On Wed, Mar 6, 2019, 11:12 AM ambesh chand shahi  wrote:
>
>> You should first type django-admin startproject "your project name".
>>
>> Then if you are using python3 then type python3 manage.py startapp
>> "appname".
>>
>> After that include that app in settings.py in Installed apps.
>>
>>
>> On Tue, 5 Mar 2019, 07:29 lujate,  wrote:
>>
>>> I created a scratch project for R
>>> I did a runserver and confirmed the default landing page.
>>> I added the apps to the settings file per the docs.
>>> I ran a migrate per the docs and got an error on one of the apps.
>>> I tried a runserver and got the same error.
>>> I dug into site-packages and confirmed the app was there.
>>>
>>> I added multiple apps, and there's only an error on one. I don't know if
>>> that's because the others are fine,  or it just stopped at the first error.
>>>
>>> Thanks
>>>
>>> On Mon, Mar 4, 2019, 6:59 PM Mario Martinez >> wrote:
>>>
 Did you run the django-admin startproject your_project_name command?

 On Fri, Mar 1, 2019, 6:13 PM lujate  wrote:

> I pip installed a Django project, but it doesn’t have a manage.py or
> settings.py.  I checked the repo on GitHub, and those files don’t exist
> there either.  Is this an alternate way of doing a Django project that I’m
> not aware of?
>
> FWIW, the project is django-wiki.
>
> TIA
>
> --
> 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 post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/30fc5fdc-6bd6-4807-99ff-c41e6e109642%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.
>
 --
 You received this message because you are subscribed to a topic in the
 Google Groups "Django users" group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/django-users/UNcOwcHuox8/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 django-users+unsubscr...@googlegroups.com.
 To post to this group, send email to django-users@googlegroups.com.
 Visit this group at https://groups.google.com/group/django-users.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAOXNLNvP-vePzZj1zEeN-kVRiBPwEk_A6x64aJ0Y312uaegE3w%40mail.gmail.com
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> --
>>> 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 post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAA4ZjbSQQP-X6jmaYxGNCjtoSzWTG-ZdwXohYwJv-yo6-2Gwqw%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "Django users" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/django-users/UNcOwcHuox8/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CA%2BM-f1c2ycqtZ4i%3DPBs6nS6n9MP6FV959XdmmtGBOb3Sn%3DO5yg%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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.
> 

Re: Missing manage.py & settings.py

2019-03-06 Thread lujate
What purpose does startapp serve when you're only using a pip installed
app?



On Wed, Mar 6, 2019, 11:12 AM ambesh chand shahi  You should first type django-admin startproject "your project name".
>
> Then if you are using python3 then type python3 manage.py startapp
> "appname".
>
> After that include that app in settings.py in Installed apps.
>
>
> On Tue, 5 Mar 2019, 07:29 lujate,  wrote:
>
>> I created a scratch project for R
>> I did a runserver and confirmed the default landing page.
>> I added the apps to the settings file per the docs.
>> I ran a migrate per the docs and got an error on one of the apps.
>> I tried a runserver and got the same error.
>> I dug into site-packages and confirmed the app was there.
>>
>> I added multiple apps, and there's only an error on one. I don't know if
>> that's because the others are fine,  or it just stopped at the first error.
>>
>> Thanks
>>
>> On Mon, Mar 4, 2019, 6:59 PM Mario Martinez > wrote:
>>
>>> Did you run the django-admin startproject your_project_name command?
>>>
>>> On Fri, Mar 1, 2019, 6:13 PM lujate  wrote:
>>>
 I pip installed a Django project, but it doesn’t have a manage.py or
 settings.py.  I checked the repo on GitHub, and those files don’t exist
 there either.  Is this an alternate way of doing a Django project that I’m
 not aware of?

 FWIW, the project is django-wiki.

 TIA

 --
 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 post to this group, send email to django-users@googlegroups.com.
 Visit this group at https://groups.google.com/group/django-users.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/30fc5fdc-6bd6-4807-99ff-c41e6e109642%40googlegroups.com
 .
 For more options, visit https://groups.google.com/d/optout.

>>> --
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "Django users" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/django-users/UNcOwcHuox8/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to
>>> django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAOXNLNvP-vePzZj1zEeN-kVRiBPwEk_A6x64aJ0Y312uaegE3w%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> 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 post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAA4ZjbSQQP-X6jmaYxGNCjtoSzWTG-ZdwXohYwJv-yo6-2Gwqw%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Django users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/django-users/UNcOwcHuox8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BM-f1c2ycqtZ4i%3DPBs6nS6n9MP6FV959XdmmtGBOb3Sn%3DO5yg%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 

Re: Missing manage.py & settings.py

2019-03-06 Thread ambesh chand shahi
You should first type django-admin startproject "your project name".

Then if you are using python3 then type python3 manage.py startapp
"appname".

After that include that app in settings.py in Installed apps.


On Tue, 5 Mar 2019, 07:29 lujate,  wrote:

> I created a scratch project for R
> I did a runserver and confirmed the default landing page.
> I added the apps to the settings file per the docs.
> I ran a migrate per the docs and got an error on one of the apps.
> I tried a runserver and got the same error.
> I dug into site-packages and confirmed the app was there.
>
> I added multiple apps, and there's only an error on one. I don't know if
> that's because the others are fine,  or it just stopped at the first error.
>
> Thanks
>
> On Mon, Mar 4, 2019, 6:59 PM Mario Martinez  wrote:
>
>> Did you run the django-admin startproject your_project_name command?
>>
>> On Fri, Mar 1, 2019, 6:13 PM lujate  wrote:
>>
>>> I pip installed a Django project, but it doesn’t have a manage.py or
>>> settings.py.  I checked the repo on GitHub, and those files don’t exist
>>> there either.  Is this an alternate way of doing a Django project that I’m
>>> not aware of?
>>>
>>> FWIW, the project is django-wiki.
>>>
>>> TIA
>>>
>>> --
>>> 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 post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/30fc5fdc-6bd6-4807-99ff-c41e6e109642%40googlegroups.com
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "Django users" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/django-users/UNcOwcHuox8/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAOXNLNvP-vePzZj1zEeN-kVRiBPwEk_A6x64aJ0Y312uaegE3w%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAA4ZjbSQQP-X6jmaYxGNCjtoSzWTG-ZdwXohYwJv-yo6-2Gwqw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BM-f1c2ycqtZ4i%3DPBs6nS6n9MP6FV959XdmmtGBOb3Sn%3DO5yg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing manage.py & settings.py

2019-03-04 Thread lujate
I created a scratch project for R
I did a runserver and confirmed the default landing page.
I added the apps to the settings file per the docs.
I ran a migrate per the docs and got an error on one of the apps.
I tried a runserver and got the same error.
I dug into site-packages and confirmed the app was there.

I added multiple apps, and there's only an error on one. I don't know if
that's because the others are fine,  or it just stopped at the first error.

Thanks

On Mon, Mar 4, 2019, 6:59 PM Mario Martinez  Did you run the django-admin startproject your_project_name command?
>
> On Fri, Mar 1, 2019, 6:13 PM lujate  wrote:
>
>> I pip installed a Django project, but it doesn’t have a manage.py or
>> settings.py.  I checked the repo on GitHub, and those files don’t exist
>> there either.  Is this an alternate way of doing a Django project that I’m
>> not aware of?
>>
>> FWIW, the project is django-wiki.
>>
>> TIA
>>
>> --
>> 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 post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/30fc5fdc-6bd6-4807-99ff-c41e6e109642%40googlegroups.com
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Django users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/django-users/UNcOwcHuox8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAOXNLNvP-vePzZj1zEeN-kVRiBPwEk_A6x64aJ0Y312uaegE3w%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAA4ZjbSQQP-X6jmaYxGNCjtoSzWTG-ZdwXohYwJv-yo6-2Gwqw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing manage.py & settings.py

2019-03-04 Thread Mario Martinez
Did you run the django-admin startproject your_project_name command?

On Fri, Mar 1, 2019, 6:13 PM lujate  wrote:

> I pip installed a Django project, but it doesn’t have a manage.py or
> settings.py.  I checked the repo on GitHub, and those files don’t exist
> there either.  Is this an alternate way of doing a Django project that I’m
> not aware of?
>
> FWIW, the project is django-wiki.
>
> TIA
>
> --
> 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 post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/30fc5fdc-6bd6-4807-99ff-c41e6e109642%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOXNLNvP-vePzZj1zEeN-kVRiBPwEk_A6x64aJ0Y312uaegE3w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing manage.py & settings.py

2019-03-04 Thread lujate
I'm still pretty new with Django. I've used a few 3rd party utilities but
no apps.

I have it installed, and I'm working on am error in my INSTALLED_APPS now.

Thanks

On Mon, Mar 4, 2019, 1:13 AM Derek  Pretty much *all* the apps you use in your Django project will be
> installed via pip ...
>
> On Saturday, 2 March 2019 06:00:47 UTC+2, lujate wrote:
>>
>> Interesting. I never thought about doing a pip install of an application.
>> I'm going to have to digest that one.
>>
>> Thanks
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Django users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/django-users/UNcOwcHuox8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/0b06fa94-c423-4610-ab22-f7e914ecd8c3%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAA4ZjbQ0ew5%2BxynWNq%2BFQRaNMFqU6zEFPMT1%3DP3O6oaZzDZ_KQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing manage.py & settings.py

2019-03-03 Thread Derek
Pretty much *all* the apps you use in your Django project will be installed 
via pip ...

On Saturday, 2 March 2019 06:00:47 UTC+2, lujate wrote:
>
> Interesting. I never thought about doing a pip install of an application. 
> I'm going to have to digest that one. 
>
> Thanks
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0b06fa94-c423-4610-ab22-f7e914ecd8c3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing manage.py & settings.py

2019-03-01 Thread lujate
Interesting. I never thought about doing a pip install of an application. I'm 
going to have to digest that one. 

Thanks

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/a50ea53d-8fcc-4f9e-819b-a5cd1ac42216%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing manage.py & settings.py

2019-03-01 Thread Dylan Reinhold
The project django-wiki is not a django project, it is a django app. You
include the app in your project.
The settings file in the install document is your settings file from your
django project.

Dylan

On Fri, Mar 1, 2019 at 5:13 PM lujate  wrote:

> I pip installed a Django project, but it doesn’t have a manage.py or
> settings.py.  I checked the repo on GitHub, and those files don’t exist
> there either.  Is this an alternate way of doing a Django project that I’m
> not aware of?
>
> FWIW, the project is django-wiki.
>
> TIA
>
> --
> 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 post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/30fc5fdc-6bd6-4807-99ff-c41e6e109642%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHtg44D6kYqryCcconSmwaTQV2K2MHBw0%2BEka-JBqiDSWLd7eg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Missing manage.py & settings.py

2019-03-01 Thread lujate
I pip installed a Django project, but it doesn’t have a manage.py or 
settings.py.  I checked the repo on GitHub, and those files don’t exist there 
either.  Is this an alternate way of doing a Django project that I’m not aware 
of?

FWIW, the project is django-wiki.

TIA

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/30fc5fdc-6bd6-4807-99ff-c41e6e109642%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing manage.py

2012-10-04 Thread Matt Schinckel
An even better solution is to always work in a virtualenv: that way you can 
easily try out new packages, and not worry about conflicts.

Matt.

On Thursday, October 4, 2012 10:30:06 PM UTC+9:30, Ramiro Morales wrote:
>
> I think so. The usual reason for the problem you are experiencing is a 
> previous installation of Django on top of which the one you are trying 
> to use was installed without unintalling the older one first *. 
>
> So, the recommended action in such cases is to ensure you start with a 
> clean slate buy removing any and all traces of the old files causing 
> trouble. 
>
> 2012/10/4, Django_Newbie : 
> > Hi.. 
> > I am using Django 1.4.1 on Windows 7 and face similar problem. I dont 
> see 
> > manage.py 
> > 
> > All I have is: 
> > __init__.py 
> > settings.py 
> > urls.py 
> > wsgi.py 
> > 
> > 
> > Is reinstalling Django only option? 
> > 
> > 
> > On Monday, 16 April 2012 16:56:32 UTC+5:30, Faeez wrote: 
> >> 
> >> Hi, 
> >> 
> >> I have a problem whenever I create a new project using the start 
> project 
> >> command, no manage.py file is created. 
> >> 
> >> I'm using Mac OS X. Thank you in advance 
> >> 
> > 
> > -- 
> > You received this message because you are subscribed to the Google 
> Groups 
> > "Django users" group. 
> > To view this discussion on the web visit 
> > https://groups.google.com/d/msg/django-users/-/_GE2ct9_qi0J. 
> > To post to this group, send email to 
> > django...@googlegroups.com. 
>
> > To unsubscribe from this group, send email to 
> > django-users...@googlegroups.com . 
> > For more options, visit this group at 
> > http://groups.google.com/group/django-users?hl=en. 
> > 
> > 
>
> -- 
> Enviado desde mi dispositivo móvil 
>
> Ramiro Morales 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/lXh1Hyfr9M0J.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Missing manage.py

2012-10-04 Thread Laxmikant Gurnalkar
you can update, instead of reinstalling.
cheers
Laxmikant

On Thu, Oct 4, 2012 at 6:29 PM, Ramiro Morales  wrote:

> I think so. The usual reason for the problem you are experiencing is a
> previous installation of Django on top of which the one you are trying
> to use was installed without unintalling the older one first *.
>
> So, the recommended action in such cases is to ensure you start with a
> clean slate buy removing any and all traces of the old files causing
> trouble.
>
> 2012/10/4, Django_Newbie :
> > Hi..
> > I am using Django 1.4.1 on Windows 7 and face similar problem. I dont see
> > manage.py
> >
> > All I have is:
> > __init__.py
> > settings.py
> > urls.py
> > wsgi.py
> >
> >
> > Is reinstalling Django only option?
> >
> >
> > On Monday, 16 April 2012 16:56:32 UTC+5:30, Faeez wrote:
> >>
> >> Hi,
> >>
> >> I have a problem whenever I create a new project using the start project
> >> command, no manage.py file is created.
> >>
> >> I'm using Mac OS X. Thank you in advance
> >>
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To view this discussion on the web visit
> > https://groups.google.com/d/msg/django-users/-/_GE2ct9_qi0J.
> > To post to this group, send email to django-users@googlegroups.com.
> > To unsubscribe from this group, send email to
> > django-users+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> > http://groups.google.com/group/django-users?hl=en.
> >
> >
>
> --
> Enviado desde mi dispositivo móvil
>
> Ramiro Morales
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Missing manage.py

2012-10-04 Thread Ramiro Morales
I think so. The usual reason for the problem you are experiencing is a
previous installation of Django on top of which the one you are trying
to use was installed without unintalling the older one first *.

So, the recommended action in such cases is to ensure you start with a
clean slate buy removing any and all traces of the old files causing
trouble.

2012/10/4, Django_Newbie :
> Hi..
> I am using Django 1.4.1 on Windows 7 and face similar problem. I dont see
> manage.py
>
> All I have is:
> __init__.py
> settings.py
> urls.py
> wsgi.py
>
>
> Is reinstalling Django only option?
>
>
> On Monday, 16 April 2012 16:56:32 UTC+5:30, Faeez wrote:
>>
>> Hi,
>>
>> I have a problem whenever I create a new project using the start project
>> command, no manage.py file is created.
>>
>> I'm using Mac OS X. Thank you in advance
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/django-users/-/_GE2ct9_qi0J.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
Enviado desde mi dispositivo móvil

Ramiro Morales

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Missing manage.py

2012-10-04 Thread Django_Newbie
Hi..
I am using Django 1.4.1 on Windows 7 and face similar problem. I dont see 
manage.py

All I have is:
__init__.py
settings.py
urls.py
wsgi.py


Is reinstalling Django only option? 


On Monday, 16 April 2012 16:56:32 UTC+5:30, Faeez wrote:
>
> Hi,
>
> I have a problem whenever I create a new project using the start project 
> command, no manage.py file is created. 
>
> I'm using Mac OS X. Thank you in advance
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/_GE2ct9_qi0J.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Missing manage.py

2012-04-18 Thread Faeez Abd Rahman
I'm using Mac OS X version 10.7.3. I tried installed Django using SVN and
download and running the setup.py command, both results in the missing
manage.py file.

I manage to find the location of the stub directory

/project_template

/project_name

_init_.py
_init_.pyc
settings.py
settings.pyc
urls.py
urls.pyc
wsgi.py
wsgi.pyc

so i guess there should be manage.py under the project_template folder
then. I try to reinstall Django then and see how it goes.

thanks.


On Wed, Apr 18, 2012 at 7:00 PM, Tom Evans <tevans...@googlemail.com> wrote:

> On Wed, Apr 18, 2012 at 11:54 AM, Faeez Abd Rahman
> <faeez.abdrah...@gmail.com> wrote:
> > Hi,
> >
> > I will try to remove and install django as you suggest, but before that I
> > like to look for that stub directory. Where is the location of that stub
> > directory?
> >
> > thanks.
> >
>
> I don't know the specifics of your OS or how you installed Django, so
> I cannot really answer that.
>
> Python packages are stored in a 'site-packages' folder*. On my OS,
> that is '/usr/local/lib/python2.7/site-packages'.
>
> In the 'site-packages' folder, there should be a folder called 'django'.
>
> In the 'django' folder, the stub project template is in
> 'conf/project_template/'
>
> Cheers
>
> Tom
>
> * Or any other folder in your PYTHONPATH
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Missing manage.py

2012-04-18 Thread Tom Evans
On Wed, Apr 18, 2012 at 11:54 AM, Faeez Abd Rahman
 wrote:
> Hi,
>
> I will try to remove and install django as you suggest, but before that I
> like to look for that stub directory. Where is the location of that stub
> directory?
>
> thanks.
>

I don't know the specifics of your OS or how you installed Django, so
I cannot really answer that.

Python packages are stored in a 'site-packages' folder*. On my OS,
that is '/usr/local/lib/python2.7/site-packages'.

In the 'site-packages' folder, there should be a folder called 'django'.

In the 'django' folder, the stub project template is in 'conf/project_template/'

Cheers

Tom

* Or any other folder in your PYTHONPATH

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Missing manage.py

2012-04-18 Thread Faeez Abd Rahman
Hi,

I will try to remove and install django as you suggest, but before that I
like to look for that stub directory. Where is the location of that stub
directory?

thanks.

On Wed, Apr 18, 2012 at 6:44 PM, Tom Evans  wrote:

> On Wed, Apr 18, 2012 at 11:35 AM, Faeez Abd Rahman
>  wrote:
> > Hi Buddy,
> >
> > Nope it's not there, I have tried to create another project, still not
> > there.
> >
> > mysite/
> > mysite/
> > __init__.py
> > settings.py
> > urls.py
> > wsgi.py
> >
> >
> > I followed the tutorial, so all files created as above, except for
> manage.py
> >
> >
>
> Could you reinstall django please, and try again.
>
> By reinstall, I mean that you should find and completely remove the
> django package from your python-packages, and then install it again.
> Just installing django over the top of an existing django package may
> not behave correctly.
>
> To clarify, when you run "django-admin.py startproject", what happens
> is that django copies a stub directory from the installed version of
> django to the name specified by startproject. Therefore, if the files
> that 'startproject' copies are not correct, it stands to reason that
> the issue is that the stub directory does not have the correct files
> in it.
>
> I have no idea how this could have happened, but wiping it away and
> reinstalling should ensure that the stub directory has the right files
> in it.
>
> Cheers
>
> Tom
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Missing manage.py

2012-04-18 Thread Tom Evans
On Wed, Apr 18, 2012 at 11:35 AM, Faeez Abd Rahman
 wrote:
> Hi Buddy,
>
> Nope it's not there, I have tried to create another project, still not
> there.
>
> mysite/
> mysite/
> __init__.py
> settings.py
> urls.py
> wsgi.py
>
>
> I followed the tutorial, so all files created as above, except for manage.py
>
>

Could you reinstall django please, and try again.

By reinstall, I mean that you should find and completely remove the
django package from your python-packages, and then install it again.
Just installing django over the top of an existing django package may
not behave correctly.

To clarify, when you run "django-admin.py startproject", what happens
is that django copies a stub directory from the installed version of
django to the name specified by startproject. Therefore, if the files
that 'startproject' copies are not correct, it stands to reason that
the issue is that the stub directory does not have the correct files
in it.

I have no idea how this could have happened, but wiping it away and
reinstalling should ensure that the stub directory has the right files
in it.

Cheers

Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Missing manage.py

2012-04-18 Thread Faeez Abd Rahman
Hi tonton,

without the manage.py, I can't create any apps.


On Wed, Apr 18, 2012 at 6:35 PM, Faeez Abd Rahman  wrote:

> Hi Buddy,
>
> Nope it's not there, I have tried to create another project, still not
> there.
>
> mysite/
> mysite/
> __init__.py
> settings.py
> urls.py
> wsgi.py
>
>
> I followed the tutorial, so all files created as above, except for
> manage.py
>
>
> On Wed, Apr 18, 2012 at 6:31 PM, Faeez Abd Rahman <
> faeez.abdrah...@gmail.com> wrote:
>
>> Hi,
>>
>> Hi,
>>
>> I'm using Django 1.4, Python 2.7 and nope I did not use virtual env.
>>
>>
>> On Tue, Apr 17, 2012 at 2:16 AM, andrea mucci wrote:
>>
>>> hi
>>>
>>> could you post
>>> django version
>>> python version
>>> you use virtualenv? if yes what version
>>> and the code you use to generate the project
>>>
>>> cheers
>>> El 16/04/2012, a las 13:26, Faeez Abd Rahman escribió:
>>>
>>> > Hi,
>>> >
>>> > I have a problem whenever I create a new project using the start
>>> project command, no manage.py file is created.
>>> >
>>> > I'm using Mac OS X. Thank you in advance
>>> >
>>> > --
>>> > You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> > To post to this group, send email to django-users@googlegroups.com.
>>> > To unsubscribe from this group, send email to
>>> django-users+unsubscr...@googlegroups.com.
>>> > For more options, visit this group at
>>> http://groups.google.com/group/django-users?hl=en.
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> To unsubscribe from this group, send email to
>>> django-users+unsubscr...@googlegroups.com.
>>> For more options, visit this group at
>>> http://groups.google.com/group/django-users?hl=en.
>>>
>>>
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Missing manage.py

2012-04-18 Thread Faeez Abd Rahman
Hi Buddy,

Nope it's not there, I have tried to create another project, still not
there.

mysite/
mysite/
__init__.py
settings.py
urls.py
wsgi.py


I followed the tutorial, so all files created as above, except for manage.py


On Wed, Apr 18, 2012 at 6:31 PM, Faeez Abd Rahman  wrote:

> Hi,
>
> Hi,
>
> I'm using Django 1.4, Python 2.7 and nope I did not use virtual env.
>
>
> On Tue, Apr 17, 2012 at 2:16 AM, andrea mucci  wrote:
>
>> hi
>>
>> could you post
>> django version
>> python version
>> you use virtualenv? if yes what version
>> and the code you use to generate the project
>>
>> cheers
>> El 16/04/2012, a las 13:26, Faeez Abd Rahman escribió:
>>
>> > Hi,
>> >
>> > I have a problem whenever I create a new project using the start
>> project command, no manage.py file is created.
>> >
>> > I'm using Mac OS X. Thank you in advance
>> >
>> > --
>> > You received this message because you are subscribed to the Google
>> Groups "Django users" group.
>> > To post to this group, send email to django-users@googlegroups.com.
>> > To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> > For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Missing manage.py

2012-04-18 Thread Faeez Abd Rahman
Hi,

Hi,

I'm using Django 1.4, Python 2.7 and nope I did not use virtual env.


On Tue, Apr 17, 2012 at 2:16 AM, andrea mucci  wrote:

> hi
>
> could you post
> django version
> python version
> you use virtualenv? if yes what version
> and the code you use to generate the project
>
> cheers
> El 16/04/2012, a las 13:26, Faeez Abd Rahman escribió:
>
> > Hi,
> >
> > I have a problem whenever I create a new project using the start project
> command, no manage.py file is created.
> >
> > I'm using Mac OS X. Thank you in advance
> >
> > --
> > You received this message because you are subscribed to the Google
> Groups "Django users" group.
> > To post to this group, send email to django-users@googlegroups.com.
> > To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Missing manage.py

2012-04-16 Thread Tonton
after project you need to do start app for making module

T.

On Mon, Apr 16, 2012 at 8:17 PM, Buddy Lindsey, Jr.
wrote:

> If you are using Django 1.4 check in the application folder of your
> project below your project folder. It should be in there.
>
>
> Faeez Abd Rahman wrote:
>
>
> Hi,
>
> I have a problem whenever I create a new project using the start
> project command, no manage.py file is created.
>
> I'm using Mac OS X. Thank you in advance
>
> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Missing manage.py

2012-04-16 Thread Buddy Lindsey, Jr.
If you are using Django 1.4 check in the application folder of your 
project below your project folder. It should be in there.


Faeez Abd Rahman wrote:


Hi,

I have a problem whenever I create a new project using the start
project command, no manage.py file is created.

I'm using Mac OS X. Thank you in advance

--
You received this message because you are subscribed to the Google
Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.


--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Missing manage.py

2012-04-16 Thread andrea mucci
hi

could you post 
django version
python version
you use virtualenv? if yes what version
and the code you use to generate the project

cheers
El 16/04/2012, a las 13:26, Faeez Abd Rahman escribió:

> Hi,
> 
> I have a problem whenever I create a new project using the start project 
> command, no manage.py file is created. 
> 
> I'm using Mac OS X. Thank you in advance
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Missing manage.py

2012-04-16 Thread Faeez Abd Rahman
Hi,

I have a problem whenever I create a new project using the start project
command, no manage.py file is created.

I'm using Mac OS X. Thank you in advance

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.