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