Thanks very much for your help.

I'm now aware that installing an sql server is a non trivial event. :)
I apologize because I'm used to doing an install with a double click
of an icon. :)

 I'm impatient because I saw this talk demonstrating django, and I
wanted to just
try that code out from the talk.  It was a simple web-db app.  I
program in other
languages, but have not done a lot of sys admin  so am learning a lot.
i understand from looking at user groups that doing installs can be a
bit rough,
architectures differ, config files, paths, env vars, startup item,
etc.

I have a goal, to create a program for my website, so that I can
collaborate with
another group of people who are doing this.  I'm not so interested in
just playing...
not sure how that impression was made.  This is fun, but its not for
fun that I'm doing it. :)


On Feb 9, 8:35 pm, Wilson MacGyver <[EMAIL PROTECTED]> wrote:
> newbiedoobiedoo wrote:
> > please take your instructions and put them up somewhere OFFICIAL,
> > because
> > I was following directions that were MUCH more complicated.
>
> > I just did what you said... and now I have django.  I will proceed to
> > try and set up Mysql
> > now, so that I can get to testing the python code I have.
>
> > What I get from what you said is that I don't need to have django
> > running in apache
> > to test out my web-db app.   Is that right?
>
> that's correct. django came with a dev server. you won't even need
> mysql. django out of box supports sqlite, which the official python
> distrubtion form python.org includes. Not there there is anything wrong
> using mysql or pgsql of course.
>
> as for the django-admin.py command not found. check to make sure
> /usr/local/bin is in your path. because after you install django, it
> should've made a copy of django-admin.py in /usr/local/bin
>
> echo $PATH will show you what your current list of path is. If you
> don't see /usr/local/bin in there,
>
> add
>
> export PATH=/usr/local/bin:$PATH
>
> to either your .profile or .bash_profile
>
> then restart terminal, when you do echo $PATH, you should now see
> /usr/local/bin as part of the list.
>
> then you can use django-admin.py all you want, you do NOT
> need to add python in front of it.
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to