gt; DATABASE_ENGINE='django.db.backends.mysql'
> DATABASE_NAME='mydatabase'
> DATABASE_USER='root'
> DATABASE_PASSWORD=''
> DATABASE_HOST='localhost'
> DATABASE_PORT='3306'
> }
> add your "user" and "passwo
ost'
DATABASE_ENGINE='django.db.backends.mysql'
DATABASE_NAME='mydatabase'
DATABASE_USER='root'
DATABASE_PASSWORD=''
DATABASE_HOST='localhost'
DATABASE_PORT='3306'
}
add your "user" and "password", both database port abov
sword", both database port above are default port
though
7. start your first database migrate
--> py manage.py migrate
Now go for Django Tutorial --> https://docs.djangoproject.com/en/4.2/
I hope this help you avoid some problems in the future.
ในวันที่ วันอังคารที่ 30 พฤษภาคม ค.ศ.
s
On Tue, 30 May 2023, 19:28 Muhammad Juwaini Abdul Rahman,
wrote:
> Getting started by doing. Django official site have their own tutorial
> that you can follow line by line.
>
> On Tue, 30 May 2023 at 22:55, Veronica Ndemo
> wrote:
>
>> Hi guys I need help.I am just gettin
, May 30, 2023 at 8:27 PM Muhammad Juwaini Abdul Rahman <
juwa...@gmail.com> wrote:
> Getting started by doing. Django official site have their own tutorial
> that you can follow line by line.
>
> On Tue, 30 May 2023 at 22:55, Veronica Ndemo
> wrote:
>
>> Hi guys I
Getting started by doing. Django official site have their own tutorial that
you can follow line by line.
On Tue, 30 May 2023 at 22:55, Veronica Ndemo
wrote:
> Hi guys I need help.I am just getting started in using Django and I would
> love to get guidance on how to go about the Django fra
Hi guys I need help.I am just getting started in using Django and I would
love to get guidance on how to go about the Django framework
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group and stop receiv
MS productive and eventually also potentially adding
>> tenants/apps to the overall solution.
>>
>> From the 'power' getting started, what else do I need to know?
>>
>> * Docker might be a possibility eventually, but not to start.
>> * Aiming for a postgr
eventually also potentially adding
>> tenants/apps to the overall solution.
>>
>> From the 'power' getting started, what else do I need to know?
>>
>> * Docker might be a possibility eventually, but not to start.
>> * Aiming for a postgres backed en
tors i.e. OrchardCore/CMS.
>
> Interested in being CMS productive and eventually also potentially adding
> tenants/apps to the overall solution.
>
> From the 'power' getting started, what else do I need to know?
>
> * Docker might be a possibility eventually, but no
ng
tenants/apps to the overall solution.
>From the 'power' getting started, what else do I need to know?
* Docker might be a possibility eventually, but not to start.
* Aiming for a postgres backed environment
* Have various Python3 versions installed, the latest is 3.10.2, I think,
did it work?
On Sat, 16 May 2020 at 01:37, Jorge Gimeno wrote:
>
>
> On Fri, May 15, 2020 at 5:27 PM John McClain
> wrote:
>
>> try removing this
>>
>> django-utils==0.0.2
>>
>> from requirements then run again to see next error
>>
>
> Good catch! I'll bet there's a name collision here.
>
> -J
On Fri, May 15, 2020 at 5:27 PM John McClain wrote:
> try removing this
>
> django-utils==0.0.2
>
> from requirements then run again to see next error
>
Good catch! I'll bet there's a name collision here.
-Jorge
--
You received this message because you are subscribed to the Google Groups
"D
try removing this
django-utils==0.0.2
from requirements then run again to see next error
On Fri, 15 May 2020 at 21:23, J Maryott wrote:
> C:\Users\jakem\python-getting-started>pip freeze
> asgiref==3.2.7
> dj-database-url==0.5.0
> Django==3.0.6
> django-heroku==0.3.1
>
Is this in a virtual environment? Are you using pipenv?
-Jorge
On Fri, May 15, 2020 at 1:24 PM J Maryott wrote:
> C:\Users\jakem\python-getting-started>pip freeze
> asgiref==3.2.7
> dj-database-url==0.5.0
> Django==3.0.6
> django-heroku==0.3.1
> django-utils==0.0
C:\Users\jakem\python-getting-started>pip freeze
asgiref==3.2.7
dj-database-url==0.5.0
Django==3.0.6
django-heroku==0.3.1
django-utils==0.0.2
gunicorn==20.0.4
psycopg2==2.8.5
pytz==2020.1
sqlparse==0.3.1
whitenoise==5.0.1
On Friday, May 15, 2020 at 11:29:29 AM UTC-4, jlgimeno71 wrote:
>
&g
> unsure), I also tried pip install django.utilsas a last ditch
> effort. It seemed to download a package successfully, but still I'm
> receiving the same error.
>
> I've made it about halfway though the "Getting Started with Python"
> tutorial on t
t ditch
effort. It seemed to download a package successfully, but still I'm
receiving the same error.
I've made it about halfway though the "Getting Started with Python"
tutorial on the Heroku Dev Center (
https://devcenter.heroku.com/articles/getting-started-with-python#ru
Did u registered you app in settings.py file ? This happens when you forget to
put name of your app in installed apps in settings.py file.
Sent from my iPhone
> On 05-Jun-2018, at 2:36 AM, Jaime Escobar wrote:
>
> Hi,
> I am a completely beginner in django and also python programming. I am t
you must replace the
> path('polls/',include(polls.
> urls)),
>
by
path('polls/',include("polls.
urls")),
because the polls is not a variable,it is a name of application
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from thi
Hi Jamie,
I think you should put single quotes inside include() which expects a path
for your apps(polls) urls.py. So try-
path('polls/',include('polls.urls'))
Hope this helps.
On Tue, 5 Jun 2018, 2:59 a.m. Jaime Escobar, wrote:
> Hi,
> I am a completely beginner in django and also python pro
Hi,
I am a completely beginner in django and also python programming. I am
trying to follow the online documentation tutorial in which a poll website
is created, but just running the server after created the polls it throws
the error "name 'polls' is not defined".
Can you help me?
Unhandled
Yes, this means "once you have installed channels", since it's in the
channels documentation. I'll update that line to mention "with channels".
Andrew
On Thu, Nov 17, 2016 at 2:13 PM, wrote:
> When you run Django out of the box, it will be set up in the default
>> layout - where all HTTP reques
>
> When you run Django out of the box, it will be set up in the default
> layout - where all HTTP requests (on the http.request channel) are routed
> to the Django view layer.
What is meant with "on the http.request channel" in the context of "out of
the box"? Out of the box Django does not
Getting Started with Django:
https://docs.djangoproject.com/en/stable/intro/
Contributing:
https://docs.djangoproject.com/en/dev/intro/contributing/
https://docs.djangoproject.com/en/dev/internals/contributing/
On Wednesday, October 7, 2015 at 8:12:11 AM UTC-4, Anagha R wrote:
>
> How
How to get stated with django?How can we contribute to it?
--
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
Hello,
If you didn't say "can't modify models", I would for sure recommend custom
methods on each model.
Otherwise, I think Thomas's suggestion is right.
Thanks,
Collin
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this
On Oct 18, 2014, at 2:24 AM, Scipion wrote:
> Hey,
>
> I have started to use Django (1.6) few weeks ago and I have the following
> problem to resolve by using templatetags. (this is my very first templatetags
> draft, so I may be wrong in the way of designing it, do not hesitate to
> highlig
Hey,
I have started to use Django (1.6) few weeks ago and I have the following
problem to resolve by using templatetags. (this is my very first
templatetags draft, so I may be wrong in the way of designing it, do not
hesitate to highlight anything weird).
In my template, I have a list of elemen
It is def worth taking the trouble to learn how to use virtualenv and
virtualenvwrapper. Once they are set up and assuming that you haven't
already put too much already into your global site-packages, they will save
you time and greatly simplify keeping different project environments
separate.
Thanks everyone!
This was all very useful advice. Wish I had known all this days ago...
On Tue, Jul 30, 2013 at 9:00 AM, Javier Guerra Giraldez
wrote:
> On Tue, Jul 30, 2013 at 10:48 AM, Jared Nielsen
> wrote:
> > I started setting up Apache with mod_wsgi, but ran into innumerable
> config
>
On Tue, Jul 30, 2013 at 10:48 AM, Jared Nielsen wrote:
> I started setting up Apache with mod_wsgi, but ran into innumerable config
> errors. After some Googling about, I found a number of suggestions to use
> lighttpd instead. Installed that and more troubleshooting. And what's this
> about gunic
On Tue, Jul 30, 2013 at 4:48 PM, Jared Nielsen wrote:
> I'm trying to learn Django but finding myself lost in troubleshooting hell.
> I can't find consistent information on the best approach for a beginner to
> get set up.
>
> I started setting up Apache with mod_wsgi, but ran into innumerable con
If you are in windows, I guess i can help you.
On Tue, Jul 30, 2013 at 9:18 PM, Jared Nielsen wrote:
> I'm trying to learn Django but finding myself lost in troubleshooting
> hell. I can't find consistent information on the best approach for a
> beginner to get set up.
>
> I started setting up A
I'm trying to learn Django but finding myself lost in troubleshooting hell.
I can't find consistent information on the best approach for a beginner to
get set up.
I started setting up Apache with mod_wsgi, but ran into innumerable config
errors. After some Googling about, I found a number of su
Admin Interface Configuration (optional)
You can read the full article here -
http://www.nuodb.com/techblog/2013/07/15/getting-started-django-and-nuodb/
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group an
On 7/14/13 1:26 PM, Mando wrote:
Hi,
This is the way I have it set up my osx
$ sudo pip install virtualenv
$ virtualenv --distribute pytho_projects
$ source python_projects/bin/activate
$ (python projects) pip install django
$ django-admin.py startproject myblog
and that should get you past t
Hi,
This is the way I have it set up my osx
$ sudo pip install virtualenv
$ virtualenv --distribute pytho_projects
$ source python_projects/bin/activate
$ (python projects) pip install django
$ django-admin.py startproject myblog
and that should get you past that. using virtualenv just makes it
ender: django-users@googlegroups.com
Date: Sun, 14 Jul 2013 03:05:16
To:
Reply-To: django-users@googlegroups.com
Subject: Getting started with django( the new one is confusing , especially
first episode)
What is vagrant ?? how do i set it up,
what is cheffile?
what is virtual env???
Please
http://docs.python-guide.org/en/latest/dev/virtualenvs.html
https://github.com/applicationsonline/librarian
http://docs.vagrantup.com/v2/why-vagrant/index.html
Now maybe you can help me by telling me what episode you are refering to?
On Sun, Jul 14, 2013 at 5:05 AM, wrote:
> What is vagrant
What is vagrant ?? how do i set it up,
what is cheffile?
what is virtual env???
Please could someone explain these to me.
Cheers!
Naufal
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group and stop receiving emails f
Yea I think they wanted you to add this "*django-admin.py
startproject mysite*" at the cd commandpromopt I am stuck here as well and
don't really know how to proceed as well.
On Monday, February 27, 2012 7:36:21 PM UTC-5, JChlipala wrote:
>
> Hello,
>
> I am a Django beginner, and am trying t
Lindstrom wrote:
> Hello,
>
> I am having trouble getting started using Django 1.4.1 on my Windows 7
> machine. Everything appears to be installed (I'm running Python 2.7 and
> have been programming in Python for over 10 years; I figure it's time to
> see what a
It looks like you have older version of Django installed somewhere.
You definitely should go for virtualenv it saves lot of troubles in the
long run.
On Mon, Sep 24, 2012 at 7:07 PM, Greg Lindstrom wrote:
> Hello,
>
> I am having trouble getting started using Django 1.4.1 on my
Hello,
I am having trouble getting started using Django 1.4.1 on my Windows 7
machine. Everything appears to be installed (I'm running Python 2.7 and
have been programming in Python for over 10 years; I figure it's time to
see what all the fuss is over "the web" :-).
https://docs.djangoproject.com/en/dev/internals/contributing/
On Tue, May 22, 2012 at 11:17 AM, vishrut mehta
wrote:
> Thank you a lo..! But i tld u im a bit new to all this...Can u
> please explain how to solve bugs and submit the patches,means the procedure
> ??I am just new to this...
t; > I am Vishrut Mehta,studing Computer
> > Sci and Eng. BTech 2nd year.I was just getting started with
> > contributing
> > to Open Source Community.So wanted to start from the thing i love like
> > developing softwares,apps,website,etc.I dont have any previous
>
On Tue, 2012-05-22 at 14:35 +0500, vishrut mehta wrote:
> I am Vishrut Mehta,studing Computer
> Sci and Eng. BTech 2nd year.I was just getting started with
> contributing
> to Open Source Community.So wanted to start from the thing i love like
> developing softwares,apps,website,
Hello Django users and Developers,
I am Vishrut Mehta,studing Computer
Sci and Eng. BTech 2nd year.I was just getting started with contributing
to Open Source Community.So wanted to start from the thing i love like
developing softwares,apps,website,etc.I dont
Hi - we're holding a workshop for developers interested in getting
stuck into Django.
It’ll cover all the essentials including:
* Setting up a new project
* Package management
* Database migration with South
* The model, view template structure
* Working with forms
* Customising the admin interfa
On Wed, Mar 7, 2012 at 11:36 AM, Clark wrote:
> After installing Django I am attempting to start a new project. After
> creating a directory for this, I tried using the command: "django-
> admin.py startproject mysite".
>
> but I'm getting the message "-bash: django-admin.py: command not found
>
On 03/07/2012 08:58 PM, Andres Reyes wrote:
For me, the main reason to use virtualenv has nothing to do with
security or anything like that, is the convenience of having different
projects with different sets of requirements not interfering with each
other
It's really all about convenience. N
For me, the main reason to use virtualenv has nothing to do with
security or anything like that, is the convenience of having different
projects with different sets of requirements not interfering with each
other
2012/3/7 backdoc :
> I've never set up virtualenv, so I can't speak to that. But, ho
I've never set up virtualenv, so I can't speak to that. But, how is
installing Django the same way that I install any other application
more of a risk? If an installer tries to write to /usr/local/bin/,
then it needs elevated permissions to do so. I would assume from that
point on, the remainder
On 03/07/2012 05:21 PM, Andre Terra wrote:
Again, don't install as root, use virtualenv. This will save you
headaches in the future, and unless you have an inexcusable reason to
have Django run as root, you shouldn't.
Sincerely,
AT
+1. Also, there is no excusable reason to need to do it as ro
Again, don't install as root, use virtualenv. This will save you headaches
in the future, and unless you have an inexcusable reason to have Django run
as root, you shouldn't.
Sincerely,
AT
On Wed, Mar 7, 2012 at 6:28 PM, backdoc wrote:
> I think you might need to install as root or sudo.
>
> F
I think you might need to install as root or sudo.
>From memory.
sudo python setup.py install
Also, try executing "which django-admin.py" at the terminal. That
will tell you the location of the executable. Basically, I'm curious
if it will even find it, as I'm thinking it didn't install at
On Wed, Mar 7, 2012 at 2:53 PM, Sandro Dutra wrote:
> I don't know how it's works on a Linux box, but on Windows we've to put
> Python/Scripts on PATH variable to use the command directly.
Or you can use virtualenv like I mentioned in the other thread.
Cheers,
AT
--
You received this messa
You should use pip and virtualenv to create a sane development environment.
This guide [1] is originally aimed at ubuntu/linux, but I think you can
probably follow in mac os x as well. I've also listed a few other links
with instructions that look alright, but that I haven't tested.
Basically, do
I don't know how it's works on a Linux box, but on Windows we've to put
Python/Scripts on PATH variable to use the command directly.
2012/3/7 Clark
> After installing Django I am attempting to start a new project. After
> creating a directory for this, I tried using the command: "django-
> adm
I am typing mine into a shell promptI posted the thread, but I don't
know that it has posted yet...here it is:
After installing Django I am attempting to start a new project. After
creating a directory for this, I tried using the command: "django-
admin.py startproject mysite".
but I'm getti
On Wed, Mar 7, 2012 at 2:43 PM, Clark wrote:
> I am having a similar issue, so I tried the $ pip uninstall django,
> but I got a "IOError: [Errno 13] Permission denied"
>
> Advice?
>
> Thanks.
>
You should have started a new thread for your new error. The error
here was that the new user was typi
I am having a similar issue, so I tried the $ pip uninstall django,
but I got a "IOError: [Errno 13] Permission denied"
Advice?
Thanks.
On Feb 28, 2:08 am, Praveen Rachabattuni
wrote:
> Hi,
>
> I am using on Mac OS X Lion and its working pretty well.
> Seems there is something wrong with your d
After installing Django I am attempting to start a new project. After
creating a directory for this, I tried using the command: "django-
admin.py startproject mysite".
but I'm getting the message "-bash: django-admin.py: command not found
".
So, I've tried running this:
"sudo ln -s library/pyth
On Tue, Feb 28, 2012 at 12:36 AM, JChlipala wrote:
> Hello,
>
> I am a Django beginner, and am trying to get Django set up in Mac OS
> X. I am going through the tutorial, but getting stuck very early
> (essentially at the beginning). I have installed Python and Django.
> The next instruction is
Hi,
I am using on Mac OS X Lion and its working pretty well.
Seems there is something wrong with your django installation, try
reinstalling
$ pip uninstall django
$ pip install django
Hope that helps.
Regards,
Praveen R
On Tuesday, 28 February 2012 06:06:21 UTC+5:30, JChlipala wrote:
>
> Hel
I've never used mac OS but try:
python django-admin.py startproject mysite
On 2/28/12, JChlipala wrote:
> Hello,
>
> I am a Django beginner, and am trying to get Django set up in Mac OS
> X. I am going through the tutorial, but getting stuck very early
> (essentially at the beginning). I have i
Hello,
I am a Django beginner, and am trying to get Django set up in Mac OS
X. I am going through the tutorial, but getting stuck very early
(essentially at the beginning). I have installed Python and Django.
The next instruction is to enter the command "django-admin.py
startproject mysite". Wh
with adding
the tutorials.
You can join here:
http://www.udemy.com/getting-started-with-django2/
Whats added already.
1. 4 part screencast for the four part Django tutorial.
2. Screencasts on using pip, pep8.py, pyflakes, ipython.
3. PDF versions of Django design patterns and Djen of Django bo
Here is the link:
http://www.udemy.com/getting-started-with-django2/
More info:
I am starting a Udemy class called "Getting started with Django".
This is supposed to be a fast paced introduction to Django, and is
going to be useful to people from beginner to intermediate Django
skill
On Wed, 2011-01-05 at 08:27 -0800, Daniel Roseman wrote:
>
>
> What version of Django have you installed? It appears to be earlier
> than 1.2 at least,
You were right on the money. I just checked the Debian site and the
Django loaded via apt-get is version 1.02. (not a typo... there's a zero
Check the capitalization of the word "models" in some of your model
definitions.
On Jan 5, 11:00 am, "Peter L. Berghold" wrote:
> OK: Trying to get a handle on getting started with Django and like I
> always do when learning a new environment I've dived in h
On Wednesday, January 5, 2011 4:00:02 PM UTC, Cowdawg wrote:
>
> OK: Trying to get a handle on getting started with Django and like I
> always do when learning a new environment I've dived in head first.
>
> Here is an error message I'm getting.
>
> pe...@slcjwe
OK: Trying to get a handle on getting started with Django and like I
always do when learning a new environment I've dived in head first.
Here is an error message I'm getting.
pe...@slcjwebapp0:~/agilitystewards$ python manage.py syncdb
Error: Couldn't install apps, because th
Thank you, that helps. Will give it a shot.
On Jan 2, 10:00 am, Blue Cuenca wrote:
> /home/mycode or /home is a linux location. Apparently, you are using
> windows.
>
> I would suggest creating a folder for all your django projects, say
> C:\DjangoProjects\ , and run django-admin.py from there.
/home/mycode or /home is a linux location. Apparently, you are using
windows.
I would suggest creating a folder for all your django projects, say
C:\DjangoProjects\ , and run django-admin.py from there.
You do not want to put your django project folder in your www folder,
since that may allow ac
OK thank you. One last question though. What makes a folder private?
Sorry but I really am a noob at this.
On Jan 2, 3:31 am, Acorn wrote:
> You can put your code anywhere you like although you shouldn't put it
> anywhere public.
>
> Just pick a private folder somewhere and let django-admin.py se
You can put your code anywhere you like although you shouldn't put it
anywhere public.
Just pick a private folder somewhere and let django-admin.py set up the folder.
On 1 January 2011 16:14, Anthony Pearce wrote:
> Quote from "Writing your first Django app, part 1":
>
> From the command line, c
Quote from "Writing your first Django app, part 1":
>From the command line, cd into a directory where you’d like to store
your code, then run the command django-admin.py startproject mysite.
This will create a mysite directory in your current directory.
Put your code in some directory outside of
I did read the docs. The ubiquious 'TaggedItem' example I just
couldn't wrap my head around. I get it now though. For those who find
this looking for a solution:
Just add three fields to your model:
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
item = gen
On 5 déc, 20:30, mack the finger wrote:
> I can't quite wrap my brain around how to do generic relations. I have
> a `Receipt` model which is a receipt of a purchase. One of the fields
> is `item` which is a foreign key to a product model. I want to be able
> to not only have products, but other t
I can't quite wrap my brain around how to do generic relations. I have
a `Receipt` model which is a receipt of a purchase. One of the fields
is `item` which is a foreign key to a product model. I want to be able
to not only have products, but other things that the user can buy.
What do I need to d
Thanks for pointing that out.
On Aug 23, 4:30 am, Steve Holden wrote:
> On 8/23/2010 7:29 AM, Russell Keith-Magee wrote:> On Mon, Aug 23, 2010 at
> 1:01 PM,nobosh wrote:
> >> I'm very interested in finding a up-to-date tutorial that shows steps
> >> for getting DJANGO running on Google App Engin
http://www.42topics.com/dumps/django/docs.html
On Mon, Aug 23, 2010 at 9:53 AM, Subhranath Chunder wrote:
> You should try django non-rel project.
>
> Thanks,
> Subhranath Chunder.
>
> On Aug 23, 2010 3:08 PM, "nobosh" wrote:
>
> I'm very interested in finding a up-to-date tutorial that shows st
You should try django non-rel project.
Thanks,
Subhranath Chunder.
On Aug 23, 2010 3:08 PM, "nobosh" wrote:
I'm very interested in finding a up-to-date tutorial that shows steps
for getting DJANGO running on Google App Engine, anyone know of any
such tutorials?
Surprisingly, Google's App Engin
On 8/23/2010 7:29 AM, Russell Keith-Magee wrote:
> On Mon, Aug 23, 2010 at 1:01 PM, nobosh wrote:
>> I'm very interested in finding a up-to-date tutorial that shows steps
>> for getting DJANGO running on Google App Engine, anyone know of any
>> such tutorials?
>>
>> Surprisingly, Google's App Engi
On Mon, Aug 23, 2010 at 1:01 PM, nobosh wrote:
> I'm very interested in finding a up-to-date tutorial that shows steps
> for getting DJANGO running on Google App Engine, anyone know of any
> such tutorials?
>
> Surprisingly, Google's App Engine DJANGO docs are almost a year old.
> What gives?
Tha
I'm very interested in finding a up-to-date tutorial that shows steps
for getting DJANGO running on Google App Engine, anyone know of any
such tutorials?
Surprisingly, Google's App Engine DJANGO docs are almost a year old.
What gives?
thanks!
--
You received this message because you are subscri
There is no 'full version' as far as I know. You're meant to write the
project along with the tutorial and by the time you complete the 4
tutorials, you will have a full django project. This is how I got my feet
wet with django, and afterwards I used all the thorough documentation as a
reference fo
Hi all,
I've read through the Django tutorial and it makes a lot of sense to
me. Does anyone have the full version of the poll application
available for download? I think it would be a good reference for me as
I develop my own site.
Thank you,
Chuck
--
You received this message because you are
figured it out, but I'm not sure I can articulate what I did. I had
to start the shell first, then import my model.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send e
Hello,
I'm going through the tutorial when I have time. A few weeks back, I
created the polls app, was able to retrieve data and use the admin
interface and everything was beautiful. Now I'm trying to catch up
where I left off and am having problems. When I do the runserver
command, it tells me
:09 PM, Rajesh Dhawan wrote:
>
>> I have some basic of python(functional part and also very basic of oop
>> part), but don't have other knowledge. I would like to start with
>> django. So, what more is required to getting started with django so
>> that i can
> I have some basic of python(functional part and also very basic of oop
> part), but don't have other knowledge. I would like to start with
> django. So, what more is required to getting started with django so
> that i can grasp all the concept and can be proficient with django
I have some basic of python(functional part and also very basic of oop
part), but don't have other knowledge. I would like to start with
django. So, what more is required to getting started with django so
that i can grasp all the concept and can be proficient with django.
Also is there any w
Hello,
I've just installed the development version in leopard on the mac, and
when I did this step:
"On Unix-like systems, create a symbolic link to the file django-trunk/
django/bin/django-admin.py in a directory on your system path, such
as /usr/local/bin. For example:
ln -s `pwd`/django-trunk
Thanks Alex! That's just what I wanted to know, could I switch
easily. I would rather put off some of that configuration time!
W
On Jun 3, 3:14 pm, Alex Gaynor wrote:
> On Wed, Jun 3, 2009 at 5:12 PM, zignorp wrote:
>
> > I just fixed this and it's working swimmingly. It seems that 10.5
> >
On Wed, Jun 3, 2009 at 5:12 PM, zignorp wrote:
>
> I just fixed this and it's working swimmingly. It seems that 10.5
> doesn't come with that directory, so I just did what I said I would in
> the last paragraph, and I have my first page. I'm very excited. Now
> I have to decide whether to go t
I just fixed this and it's working swimmingly. It seems that 10.5
doesn't come with that directory, so I just did what I said I would in
the last paragraph, and I have my first page. I'm very excited. Now
I have to decide whether to go through the pain of getting mysql
working right with django
om wrote:
> > hi there ! am new in django and i need help on getting started...
> > if you are the guy please email me
>
> Welcome! Start here:
> <http://docs.djangoproject.com/en/dev/intro/tutorial01/>. Don't worry if
> it doesn't all make sense at first. Just
1 - 100 of 121 matches
Mail list logo