Re: django install

2018-09-08 Thread soumyajit banerjee
use anaconda navigator. then you can start play in django.
https://conda.io/docs/user-guide/install/index.html

On Sat, Sep 8, 2018 at 7:56 AM gonzalo rodrigo pereyra <
gonzalorp12...@gmail.com> wrote:

> saludos. soy nuevo en el increible mundo de la programacion, primero
> comence leyendo mucho y me gusto python., asi que lo instale ( la version
> 3.6.5.)
> y me gusta mucho dibujar asi que me incline para hacer diseño de paginas
> con django. si no es mucha molestia me podrian ayudar a instalar el mismo.
> me quede trabado luego que instale pip.Desde ya muchas gracias desde
> Argentina un saludo enorme!!!
>
> --
> 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/5e81-5ac1-47b2-8999-60f231d70a8a%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
Soumyajit Banerjee
Tech Analyst
Infosys
m: 9903675354
w: www.infosys.com  e: soumyajit4...@gmail.com



-- 
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/CAG8c6EH44SSvCTr6bbugjj4cFdscFUp2OJXWBM8sptVaAqu%2BPg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


django install

2018-09-07 Thread gonzalo rodrigo pereyra
saludos. soy nuevo en el increible mundo de la programacion, primero 
comence leyendo mucho y me gusto python., asi que lo instale ( la version 
3.6.5.)
y me gusta mucho dibujar asi que me incline para hacer diseño de paginas 
con django. si no es mucha molestia me podrian ayudar a instalar el mismo. 
me quede trabado luego que instale pip.Desde ya muchas gracias desde 
Argentina un saludo enorme!!!

-- 
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/5e81-5ac1-47b2-8999-60f231d70a8a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: django install

2017-05-13 Thread Mike Dewhirst

On 14/05/2017 3:39 PM, Mike Dewhirst wrote:

On 14/05/2017 10:15 AM, Dwaine Zeringue wrote:
pip install Django in interpreter (via windows command prompt) 
continuously results in syntax errors, specifically, file line 1 pip 
install django ""


I have written a couple of batch files for creating a new 
Python/Django environment on Windows 8.1 and pasted them in a single 
Pastebin https://pastebin.com/fAkTRM5i


Ignore the first batch file in that pastebin. The second (_cheq_req.bat) 
one is good.


Here is the replacement for the first one ...

https://pastebin.com/dnQCbYG4

I edited a couple of lines to make it match my instructions below ;)

Cheers

Mike



First: _cheq.bat

You need to edit this on lines:
40 - change from 35 to 36 if using Python 3.6
47 - change "py_dir" to be the Python directory (mine are both in the 
root of C:)

49 - change "env" to the name of your environments parent dir
51 - change "batdir" to your batchfile directory and make sure it is 
on the Windows path

108 to 111 - change to suit your install requirements
113 - change if you changed 40
114 & 115 need to be downloaded ahead of time or commented out
119 & 120 ditto if using Python 2.7

_cheq.bat will create the virtual environment and write out the 
requirements files ready for pip in the second batch file to install 
everything


Execute _cheq.bat in a non-privileged ordinary command prompt with two 
arguments being the  and 


Second: _cheq_req.bat

This must be executed with the same two arguments you gave _cheq.bat. 
It will read the requirements created by _cheq.bat and install 
whatever is listed there.


I put an app named "common" into this batch file so you can remove 
that or edit it as you like.


Good luck

Mike



Could anyone guide me in installing a python/Django environment on 
windows

--
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/d59b939d-d5dd-4c12-b5e2-ef5a3002de93%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/40e760c4-0531-0d55-e122-1f7e24280772%40dewhirst.com.au.
For more options, visit https://groups.google.com/d/optout.


Re: django install

2017-05-13 Thread Mike Dewhirst

On 14/05/2017 10:15 AM, Dwaine Zeringue wrote:
pip install Django in interpreter (via windows command prompt) 
continuously results in syntax errors, specifically, file line 1 pip 
install django ""


I have written a couple of batch files for creating a new Python/Django 
environment on Windows 8.1 and pasted them in a single Pastebin 
https://pastebin.com/fAkTRM5i


First: _cheq.bat

You need to edit this on lines:
40 - change from 35 to 36 if using Python 3.6
47 - change "py_dir" to be the Python directory (mine are both in the 
root of C:)

49 - change "env" to the name of your environments parent dir
51 - change "batdir" to your batchfile directory and make sure it is on 
the Windows path

108 to 111 - change to suit your install requirements
113 - change if you changed 40
114 & 115 need to be downloaded ahead of time or commented out
119 & 120 ditto if using Python 2.7

_cheq.bat will create the virtual environment and write out the 
requirements files ready for pip in the second batch file to install 
everything


Execute _cheq.bat in a non-privileged ordinary command prompt with two 
arguments being the  and 


Second: _cheq_req.bat

This must be executed with the same two arguments you gave _cheq.bat. It 
will read the requirements created by _cheq.bat and install whatever is 
listed there.


I put an app named "common" into this batch file so you can remove that 
or edit it as you like.


Good luck

Mike



Could anyone guide me in installing a python/Django environment on 
windows

--
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/d59b939d-d5dd-4c12-b5e2-ef5a3002de93%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/608764bf-9f20-028f-a9a3-c12bfff0f382%40dewhirst.com.au.
For more options, visit https://groups.google.com/d/optout.


django install

2017-05-13 Thread Dwaine Zeringue
pip install Django in interpreter (via windows command prompt) continuously 
results in syntax errors, specifically, file line 1 pip install django 
""

Could anyone guide me in installing a python/Django environment on windows 

-- 
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/d59b939d-d5dd-4c12-b5e2-ef5a3002de93%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django install packages using pip

2014-11-24 Thread Hossein Rashnoo
the problem was i use python2.6 with django 1.7 and when install django 1.6 
problem solved

-- 
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 http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/02806b34-e930-492a-9a20-77d3ce96b8a2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django Install Error: " SyntaxError: future feature unicode_literals is not defined "

2014-01-09 Thread Xavier Ordoquy
Hi,

Given the error it looks like you weren’t using python 3.3
For the record, I’m running on osx (10.9), using python 3.3.3 I had no issue 
with this import.

Regards,
Xavier Ordoquy.


Le 9 janv. 2014 à 19:04, Byron Price  a écrit :

> I have Python 3.3.2 running and I'm trying to download Django-1.6.1 
> 
> 
> 
> On Thursday, January 9, 2014 12:39:11 AM UTC-5, Mark Moss wrote:
> What's the version of python you are using? Django 1.5 has dropped support 
> for Python 2.5 (see here and here). Here is another similar problem with OSX.
> 
> 
> - Mark
> Struggling with Django setup? Try the new Instant Django Hosting.
> 
> -- 
> 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 http://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/34d7b3c6-b6df-45ec-a35f-1bcaed6190de%40googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.

-- 
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 http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/DBECDB76-F27E-47AF-8A8F-6A1618003BB0%40linovia.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Django Install Error: " SyntaxError: future feature unicode_literals is not defined "

2014-01-09 Thread Byron Price
I have Python 3.3.2 running and I'm trying to download Django-1.6.1 



On Thursday, January 9, 2014 12:39:11 AM UTC-5, Mark Moss wrote:
>
> What's the version of python you are using? Django 1.5 has dropped 
> support for Python 2.5 (*see here 
> * 
> and 
> *here 
> *).
>  
> *Here is * another similar 
> problem with OSX.
>
> 
> - Mark
> *Struggling with Django setup? Try the new Instant Django Hosting 
> .*
>

-- 
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 http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/34d7b3c6-b6df-45ec-a35f-1bcaed6190de%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Django Install Error: " SyntaxError: future feature unicode_literals is not defined "

2014-01-08 Thread Mark Moss
What's the version of python you are using? Django 1.5 has dropped support 
for Python 2.5 (*see here 
* and 
*here 
*).
 
*Here is * another similar 
problem with OSX.


- Mark
*Struggling with Django setup? Try the new Instant Django Hosting 
.*

-- 
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 http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/9c8a05bd-80ee-407e-a5e5-347e1e81fd7b%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Django Install Error: " SyntaxError: future feature unicode_literals is not defined "

2014-01-08 Thread Byron Price
I am new to programming in general and I am struggling to install Django. 
 I downloaded the gar file, unzipped it and then attempted to do the " sudo 
python setup.py install " command in the terminal (I'm working on a Mac OS 
X 10.5.8) but was given the following message : 

Traceback (most recent call last):
  File "setup.py", line 80, in 
version = __import__('django').get_version()
  File "/Users/byronprice/Downloads/Django-1.6.1/django/__init__.py", line 
6, in get_version
from django.utils.version import get_version
  File "/Users/byronprice/Downloads/Django-1.6.1/django/utils/version.py", 
line 1
from __future__ import unicode_literals
SyntaxError: future feature unicode_literals is not defined

I imagine unicode_literals is part of the Python library and that perhaps 
in version 3.3 the name was changed to something slightly different.  Does 
anyone have any ideas??


-- 
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 http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/274d5ec8-c4aa-4198-8529-dec0b75fdad5%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Django install existing project

2013-08-15 Thread Gerd Koetje
one of the errors i encounter when i just copy the project is:

_mysql_exceptions.OperationalError: (1193, "Unknown system variable 
'innodb_strict_mode'")

-- 
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 http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Django install existing project

2013-08-15 Thread Gerd Koetje
anyone willing to install it to see what i am doing wrong?
i tried to copy the contents but that gives me all sorts of errors

-- 
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 http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Django install existing project

2013-08-15 Thread Gerd Koetje
anyone willing to install it to see what i am doing wrong?
i tried to copy the contents but that gives me all sorts of errors

Op donderdag 15 augustus 2013 17:02:57 UTC+2 schreef Gerd Koetje:
>
> Hi,
>
> Im fairly new to django and trying to install a existing project
> https://github.com/ossobv/pstore
>
> Im kinda stuck on how to install this
> i tried pip install django-pstore and it installs something but when i 
> check the directory i dont see an pstore website directory
> i do find it in the site-packages
>
> im kinda confused how to get this properly installed
> anyone care to help me out a bit?
>

-- 
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 http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Django install existing project

2013-08-15 Thread Bill Freeman
Normally pip install will put it in your site-packages directory.  Try
starting python, then:

>>> import django
>>> django

That should mention a file path that will tell you where things get
installed.

If the project isn't set up to run that way (for example, if you need to
customize settings.py or urls.py), then probably better than installing it
is just unpacking it where you need it.  You should be able to get github
to give you a zip file.

Bill


On Thu, Aug 15, 2013 at 11:02 AM, Gerd Koetje
wrote:

> Hi,
>
> Im fairly new to django and trying to install a existing project
> https://github.com/ossobv/pstore
>
> Im kinda stuck on how to install this
> i tried pip install django-pstore and it installs something but when i
> check the directory i dont see an pstore website directory
> i do find it in the site-packages
>
> im kinda confused how to get this properly installed
> anyone care to help me out a bit?
>
> --
> 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 http://groups.google.com/group/django-users.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
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 http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Django install existing project

2013-08-15 Thread Gerd Koetje
Hi,

Im fairly new to django and trying to install a existing project
https://github.com/ossobv/pstore

Im kinda stuck on how to install this
i tried pip install django-pstore and it installs something but when i 
check the directory i dont see an pstore website directory
i do find it in the site-packages

im kinda confused how to get this properly installed
anyone care to help me out a bit?

-- 
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 http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Django install error using Python26

2013-01-26 Thread Karen Tracey
On Sat, Jan 26, 2013 at 11:08 PM, Andrew Palmer wrote:

> Wow I feel like an idiot... I'm so used to tabbing everything out that I
> was tabbing the 'INSTALL' located in the django directory...
>

Ah, that's an unfortunate bit of unhelpfulness with tab-completion there.
Hopefully things will get easier now. When in doubt try to do exactly as
shown in the tutorial/book and if that doesn't work don't be afraid to ask
questions on IRC or here. I expect everyone here can remember tripping in
early days over something that in retrospect seems silly.

Karen
-- 
http://tracey.org/kmt/

-- 
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.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django install error using Python26

2013-01-26 Thread Andrew Palmer
Karen,

Wow I feel like an idiot... I'm so used to tabbing everything out that I 
was tabbing the 'INSTALL' located in the django directory...

I bet I would have been staring at that all night, THANKS!

Andy

-- 
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.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django install error using Python26

2013-01-26 Thread Andrew Palmer
Karen,

Wow I feel like an idiot... I'm so used to tabbing everything out that I 
was tabbing the 'INSTALL' located in the django directory...

I bet I would have been staring at that all night, THANKS!

Andy

On Saturday, January 26, 2013 9:55:28 PM UTC-6, Andrew Palmer wrote:
>
> Hey All,
>
> So I'm new to Python/Django, trying to use this more after being a Perl 
> user for quite some time. I'm going through the djangobook.com tutorial 
> for starters. I have Python 2.6.6 installed, as well as Django 1.4.3. 
> Hasn't been an issue running any Python scripts, however when I navigate to 
> the django directory to do the install:
> python setup.py INSTALL
>
> I get the following:
>
> C:\Django-1.4.3>python setup.py INSTALL
> usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
>or: setup.py --help [cmd1 cmd2 ...]
>or: setup.py --help-commands
>or: setup.py cmd --help
>
> error: invalid command 'INSTALL'
>
> I'm running Windows 7 64, installed the Python 2.6.6, added that and the 
> path to the scripts directory to PATH, and installed the version of django 
> mentioned above. I've searched for about the past 2 hours for a solution on 
> line so I figured I would give this a shot. Any help would be much 
> appreciated.
>
> Thank you
>

-- 
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.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Django install error using Python26

2013-01-26 Thread Karen Tracey
Lowercase install, not uppercase INSTALL.

Karen
-- 
http://tracey.org/kmt/

-- 
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 http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Django install error using Python26

2013-01-26 Thread Andrew Palmer
Hey All,

So I'm new to Python/Django, trying to use this more after being a Perl 
user for quite some time. I'm going through the djangobook.com tutorial for 
starters. I have Python 2.6.6 installed, as well as Django 1.4.3. Hasn't 
been an issue running any Python scripts, however when I navigate to the 
django directory to do the install:
python setup.py INSTALL

I get the following:

C:\Django-1.4.3>python setup.py INSTALL
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: setup.py --help [cmd1 cmd2 ...]
   or: setup.py --help-commands
   or: setup.py cmd --help

error: invalid command 'INSTALL'

I'm running Windows 7 64, installed the Python 2.6.6, added that and the 
path to the scripts directory to PATH, and installed the version of django 
mentioned above. I've searched for about the past 2 hours for a solution on 
line so I figured I would give this a shot. Any help would be much 
appreciated.

Thank you

-- 
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.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




jython django install - django import error

2012-02-29 Thread andzsinszan
Hi,
I have problems installing django for jyhton.
I followed instructions on the django / django-jython site, but can't
import django from jython.

Jython 2.5.3b1
django_jython-1.3.0b2

### INSTALLATION
# after
#  - installing jython
#  - adding JYTHON_DIR/bin to path:
> jython pip install django-jython

...installs fine


### USE
> jython
Jython 2.5.3b1 (2.5:5fa0a5810b25, Feb 22 2012, 12:39:02)
[Java HotSpot(TM) Server VM (Sun Microsystems Inc.)] on java1.6.0_26
Type "help", "copyright", "credits" or "license" for more information.

>>> import doj
>>> import django
Traceback (most recent call last):
  File "", line 1, in 
ImportError: No module named django

***
importing 'doj' works fine though. But there is no 'django'.
I tried to put pyhon's django to JYTHONPATH:
/usr/local/lib/python2.7/dist-packages/django

Still no luck.

Do I miss something?
Otherwise django on python seems to work fine.



-- 
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: failing django install on dreamhost

2012-01-29 Thread Dan Gentry
I'm going to guess that maybe there is a syntax in one of the lines
preceding this one.  Could you share the entire DATABASE session of
your settings file?

FYI, I have written a more up to date procedure for running Django on
Dreamhost - built on the great posts by Jeff Croft and others.
http://dashdrum.com/blog/2011/08/django-on-dreamhost/

On Jan 16, 12:19 pm, ebhakt  wrote:
> I have tried to install django on dreamhost using many ways :
>
>    1. I have tried the official django install script from dreamhost
>    2. tried to follow instructions as per
>    http://jeffcroft.com/blog/2006/may/11/django-dreamhost/
>
> But in all the cases it fails at the syncdb step
>
> I tried the steps mentioned in jeff's blog with an older version of django
> even (v1.2.1)
>
> but nothing seem to work !!
>
> Here is the message that i get doing django-admin.py syncdb
>
> 
>
> Traceback (most recent call last):
>   File "/usr/bin/django-admin.py", line 5, in 
>     management.execute_from_command_line()
>   File
> "/home/shell_user/django/django_src/django/core/management/__init__.py",
> line 429, in execute_from_command_line
>     utility.execute()
>   File
> "/home/shell_user/django/django_src/django/core/management/__init__.py",
> line 379, in execute
>     self.fetch_command(subcommand).run_from_argv(self.argv)
>   File
> "/home/shell_user/django/django_src/django/core/management/__init__.py",
> line 252, in fetch_command
>     app_name = get_commands()[subcommand]
>   File
> "/home/shell_user/django/django_src/django/core/management/__init__.py",
> line 101, in get_commands
>     apps = settings.INSTALLED_APPS
>   File "/home/shell_user/django/django_src/django/utils/functional.py",
> line 276, in __getattr__
>     self._setup()
>   File "/home/shell_user/django/django_src/django/conf/__init__.py", line
> 40, in _setup
>     self._wrapped = Settings(settings_module)
>   File "/home/shell_user/django/django_src/django/conf/__init__.py", line
> 73, in __init__
>     mod = importlib.import_module(self.SETTINGS_MODULE)
>   File "/home/shell_user/django/django_src/django/utils/importlib.py", line
> 35, in import_module
>     __import__(name)
>   File "/home/shell_user/django/django_projects/WebBuilder/settings.py",
> line 16
>     'NAME': 'oncloud_database',                      # Or path to database
> file if using sqlite3.
>          ^
> SyntaxError: invalid syntax
>
> 
>
> Please comment !!
>
> Any help is always welcome
>
> Thanks
>
> --
> Bhaskar Tiwari
> Freelancer Developer and Active Directory Specialist
> Previously with Directory Services, Microsoft
> Cell Phone: Home Town : +91 9808437438 (preferred) , Delhi: +91 9971697075
> 
>  All we have to decide is what to do with the time that has been given to us
>
> Personal:
> ===http://ebhakt.info/
> ===
>
> Professional:
> ===http://www.ebhakt.com/http://fytclub.net/http://crackzhack.net/
> ===

-- 
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.



failing django install on dreamhost

2012-01-27 Thread ebhakt
I have tried to install django on dreamhost using many ways :

   1. I have tried the official django install script from dreamhost
   2. tried to follow instructions as per
   http://jeffcroft.com/blog/2006/may/11/django-dreamhost/

But in all the cases it fails at the syncdb step

I tried the steps mentioned in jeff's blog with an older version of django
even (v1.2.1)

but nothing seem to work !!

Here is the message that i get doing django-admin.py syncdb



Traceback (most recent call last):
  File "/usr/bin/django-admin.py", line 5, in 
management.execute_from_command_line()
  File
"/home/shell_user/django/django_src/django/core/management/__init__.py",
line 429, in execute_from_command_line
utility.execute()
  File
"/home/shell_user/django/django_src/django/core/management/__init__.py",
line 379, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
  File
"/home/shell_user/django/django_src/django/core/management/__init__.py",
line 252, in fetch_command
app_name = get_commands()[subcommand]
  File
"/home/shell_user/django/django_src/django/core/management/__init__.py",
line 101, in get_commands
apps = settings.INSTALLED_APPS
  File "/home/shell_user/django/django_src/django/utils/functional.py",
line 276, in __getattr__
self._setup()
  File "/home/shell_user/django/django_src/django/conf/__init__.py", line
40, in _setup
self._wrapped = Settings(settings_module)
  File "/home/shell_user/django/django_src/django/conf/__init__.py", line
73, in __init__
mod = importlib.import_module(self.SETTINGS_MODULE)
  File "/home/shell_user/django/django_src/django/utils/importlib.py", line
35, in import_module
__import__(name)
  File "/home/shell_user/django/django_projects/WebBuilder/settings.py",
line 16
'NAME': 'oncloud_database',  # Or path to database
file if using sqlite3.
 ^
SyntaxError: invalid syntax



Please comment !!

Any help is always welcome

Thanks


-- 
Bhaskar Tiwari
Freelancer Developer and Active Directory Specialist
Previously with Directory Services, Microsoft
Cell Phone: Home Town : +91 9808437438 (preferred) , Delhi: +91 9971697075

 All we have to decide is what to do with the time that has been given to us

Personal:
===
http://ebhakt.info/
===

Professional:
===
http://www.ebhakt.com/
http://fytclub.net/
http://crackzhack.net/
===

-- 
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: trouble with Django install

2010-09-12 Thread nick.l...@gmail.com
oh forgot to add...to verify that Django was installed properly, start the
python interpreter...then type: import django

If it does not error then you're good to go. else...something went wrong.

n

On Sun, Sep 12, 2010 at 10:19 PM, nick.l...@gmail.com
wrote:

> Sophi
>
> This is the simplest way to install Django:
> http://docs.djangoproject.com/en/dev/topics/install/?from=olddocs#installing-an-official-release
>
> If you follow the instructions about installing the offical release, then
> you won't need to worry about doing any linking (ie the ln -s command)
>
> n
>
>
> On Sun, Sep 12, 2010 at 3:11 PM, Sophi  wrote:
>
>> Hello-
>> I am trying to install Django and having problems!
>> I have Python 2.6 and Ubuntu, also I am total Linux N00B
>>
>> I am using this document to help me to install Django:
>> http://docs.djangoproject.com/en/dev/topics/install/?from=olddocs
>>
>> Everything seems OK until I want to check that the Python interpreter
>> can load Django's code.
>> I put in:
>> ln -s `pwd`/django-trunk/django SITE-PACKAGES-DIR/django
>> using my site package /usr/lib/python2.6/dist-packages
>> and also my password without the ' around it.
>> I get back:
>> ln: target `usr/lib/python2.6/dist-packages/django' is not a directory
>>
>> And so, I don't know how to run Django or check that it is installed.
>> 
>> Thanks!
>> Sophi
>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-us...@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.
>>
>>
>
>
> --
> Guadajuko! Vamos a correr!
>  -"Cool! we are going to run!"
>



-- 
Guadajuko! Vamos a correr!
 -"Cool! we are going to run!"

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: trouble with Django install

2010-09-12 Thread ankit rai
shortcut is a module name in django application.You might be using this in
your views as from.django.shortcuts import httP*.There is no error while
deploying .

On Mon, Sep 13, 2010 at 8:49 AM, nick.l...@gmail.com wrote:

> Sophi
>
> This is the simplest way to install Django:
> http://docs.djangoproject.com/en/dev/topics/install/?from=olddocs#installing-an-official-release
>
> If you follow the instructions about installing the offical release, then
> you won't need to worry about doing any linking (ie the ln -s command)
>
> n
>
>
> On Sun, Sep 12, 2010 at 3:11 PM, Sophi  wrote:
>
>> Hello-
>> I am trying to install Django and having problems!
>> I have Python 2.6 and Ubuntu, also I am total Linux N00B
>>
>> I am using this document to help me to install Django:
>> http://docs.djangoproject.com/en/dev/topics/install/?from=olddocs
>>
>> Everything seems OK until I want to check that the Python interpreter
>> can load Django's code.
>> I put in:
>> ln -s `pwd`/django-trunk/django SITE-PACKAGES-DIR/django
>> using my site package /usr/lib/python2.6/dist-packages
>> and also my password without the ' around it.
>> I get back:
>> ln: target `usr/lib/python2.6/dist-packages/django' is not a directory
>>
>> And so, I don't know how to run Django or check that it is installed.
>> 
>> Thanks!
>> Sophi
>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-us...@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.
>>
>>
>
>
> --
> Guadajuko! Vamos a correr!
>  -"Cool! we are going to run!"
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-us...@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-us...@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: trouble with Django install

2010-09-12 Thread nick.l...@gmail.com
Sophi

This is the simplest way to install Django:
http://docs.djangoproject.com/en/dev/topics/install/?from=olddocs#installing-an-official-release

If you follow the instructions about installing the offical release, then
you won't need to worry about doing any linking (ie the ln -s command)

n


On Sun, Sep 12, 2010 at 3:11 PM, Sophi  wrote:

> Hello-
> I am trying to install Django and having problems!
> I have Python 2.6 and Ubuntu, also I am total Linux N00B
>
> I am using this document to help me to install Django:
> http://docs.djangoproject.com/en/dev/topics/install/?from=olddocs
>
> Everything seems OK until I want to check that the Python interpreter
> can load Django's code.
> I put in:
> ln -s `pwd`/django-trunk/django SITE-PACKAGES-DIR/django
> using my site package /usr/lib/python2.6/dist-packages
> and also my password without the ' around it.
> I get back:
> ln: target `usr/lib/python2.6/dist-packages/django' is not a directory
>
> And so, I don't know how to run Django or check that it is installed.
> 
> Thanks!
> Sophi
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-us...@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.
>
>


-- 
Guadajuko! Vamos a correr!
 -"Cool! we are going to run!"

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.



trouble with Django install

2010-09-12 Thread Sophi
Hello-
I am trying to install Django and having problems!
I have Python 2.6 and Ubuntu, also I am total Linux N00B

I am using this document to help me to install Django:
http://docs.djangoproject.com/en/dev/topics/install/?from=olddocs

Everything seems OK until I want to check that the Python interpreter
can load Django's code.
I put in:
ln -s `pwd`/django-trunk/django SITE-PACKAGES-DIR/django
using my site package /usr/lib/python2.6/dist-packages
and also my password without the ' around it.
I get back:
ln: target `usr/lib/python2.6/dist-packages/django' is not a directory

And so, I don't know how to run Django or check that it is installed.

Thanks!
Sophi


-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: Django Install - Won't Import?

2010-07-14 Thread jaymzcd
Sounds like you're quite new to all this. If I was you I'd install
setuptools for windows, it'll make adding packages a lot easier for
you.
http://thinkhole.org/wp/2007/02/01/howto-install-setuptools-in-windows/

The "setup.py install" command, you should have "python" before that
so it actually executes.

You can of course always just extract the django source code and drop
it in your python packages also. If you execute "python" at the
command line and try "import django" it should work. I haven't tried
installing python etc on windows for a couple of years but my collegue
found this guide useful for setting up his django install on vista:

http://i.justrealized.com/2008/04/08/how-to-install-python-and-django-in-windows-vista/

jaymz

On Jul 14, 1:46 pm, Hayezb  wrote:
> I'm trying to install Django on my laptop but it's not wanting to
> import through the command line. I pointed to the "setup.py install"
> but when I try this notepad comes up with some code and that's it. I
> go and check my Python directory and there are no Django files in
> there.
>
> Any ideas?
>
> Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.



Django Install - Won't Import?

2010-07-14 Thread Hayezb
I'm trying to install Django on my laptop but it's not wanting to
import through the command line. I pointed to the "setup.py install"
but when I try this notepad comes up with some code and that's it. I
go and check my Python directory and there are no Django files in
there.

Any ideas?

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: New Guide to Django install on fresh VPS

2009-12-24 Thread Leonel Nunez
> OK, I have Cherokee and uwsgi installed and running.
> Now I am hung up on configuring a domain to resolve to a django
> project/app.
> Leonel: Can you share or point to any configuration details? I have
> reviewed the cherokee admin docs and tried the wizard.
> Thank you :)
>
> --
>


Just create the new virtual server:
http://www.cherokee-project.com/doc/config_virtual_servers.html

or edit de default virtual server

Then add the new rule for /yourapp or  edit the default rule for Django:
http://www.cherokee-project.com/doc/cookbook_django.html

Saludos


--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: New Guide to Django install on fresh VPS

2009-12-24 Thread LarryEitel
OK, I have Cherokee and uwsgi installed and running.
Now I am hung up on configuring a domain to resolve to a django
project/app.
Leonel: Can you share or point to any configuration details? I have
reviewed the cherokee admin docs and tried the wizard.
Thank you :)

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: New Guide to Django install on fresh VPS

2009-12-24 Thread LarryEitel
Progress but no cigar...

I ran:
sudo make -f Makefile.Linux.Py26

And it returned:
rm -f utils.o socket.o pymodule.o main.o
gcc -c `python2.6-config --cflags` `xml2-config --cflags` utils.c
gcc -c `python2.6-config --cflags` `xml2-config --cflags` socket.c
gcc -c `python2.6-config --cflags` `xml2-config --cflags` -o
pymodule.o uwsgi_pymodule.c
gcc -c `python2.6-config --cflags` `xml2-config --cflags` -o main.o
uwsgi.c
gcc `python2.6-config --libs` `xml2-config --libs` utils.o socket.o
pymodule.o main.o -o uwsgi26

Cool... No errors :)

I then ran:
sudo make install

I returned:
make: *** No rule to make target `install'.  Stop.

THEN I realized that it produced a file:
swsgi26 !

It would be nice if the install docs mentioned that.

Proceeding...

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: New Guide to Django install on fresh VPS

2009-12-24 Thread Leonel Nunez
> Having a problem with installing uwsgi. Any suggestions?
>
> $ sudo wget http://projects.unbit.it/downloads/uwsgi-0.9.3.tar.gz
> $ sudo tar xf uwsgi-0.9.3.tar.gz
> $ cd uwsgi-0.9.3
> $ sudo make -f Makefile.Linux.Py26
>
> rm -f utils.o socket.o pymodule.o main.o
> gcc -c `python2.6-config --cflags` `xml2-config --cflags` utils.c
> /bin/sh: xml2-config: not found
> gcc -c `python2.6-config --cflags` `xml2-config --cflags` socket.c
> /bin/sh: xml2-config: not found
> gcc -c `python2.6-config --cflags` `xml2-config --cflags` -o
> pymodule.o uwsgi_pymodule.c
> /bin/sh: xml2-config: not found
> gcc -c `python2.6-config --cflags` `xml2-config --cflags` -o main.o
> uwsgi.c
> /bin/sh: xml2-config: not found

you need to install the package : libxml2-dev


saludos

Leonel


--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: New Guide to Django install on fresh VPS

2009-12-24 Thread Leonel Nunez
> Hello Leonel,
>
> I watched the Cherokee Videos and will give it a crack. Here is a new
> Google Doc that I will use to document the process. If anyone else
> reading this has experience with building out a VPS with Cherokee and
> Django along with other key packages, please take a look and share
> your observations. I can also be Skype'd at larryeitel.
> Thank you :)
>
> http://docs.google.com/View?id=ddbbmdr8_14fkvbkgcs



I use Django + Cherokee webserver on real and Virtual Private Servers with
Ubuntu

For cherokee on ubuntu just install the package from launchpad :

https://launchpad.net/~cherokee-webserver/+archive/ppa/+packages

I've just uploaded 0.99.38 to launchpad and it's where the latest and
greatest Cherokee for Ubuntu is maintained

saludos ..

Leonel


--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: New Guide to Django install on fresh VPS

2009-12-24 Thread LarryEitel
Having a problem with installing uwsgi. Any suggestions?

$ sudo wget http://projects.unbit.it/downloads/uwsgi-0.9.3.tar.gz
$ sudo tar xf uwsgi-0.9.3.tar.gz
$ cd uwsgi-0.9.3
$ sudo make -f Makefile.Linux.Py26

rm -f utils.o socket.o pymodule.o main.o
gcc -c `python2.6-config --cflags` `xml2-config --cflags` utils.c
/bin/sh: xml2-config: not found
gcc -c `python2.6-config --cflags` `xml2-config --cflags` socket.c
/bin/sh: xml2-config: not found
gcc -c `python2.6-config --cflags` `xml2-config --cflags` -o
pymodule.o uwsgi_pymodule.c
/bin/sh: xml2-config: not found
gcc -c `python2.6-config --cflags` `xml2-config --cflags` -o main.o
uwsgi.c
/bin/sh: xml2-config: not found
uwsgi.c:82:27: error: libxml/parser.h: No such file or directory
uwsgi.c:83:25: error: libxml/tree.h: No such file or directory
uwsgi.c: In function 'uwsgi_xml_config':
uwsgi.c:2201: error: 'xmlDoc' undeclared (first use in this function)
uwsgi.c:2201: error: (Each undeclared identifier is reported only once
uwsgi.c:2201: error: for each function it appears in.)
uwsgi.c:2201: error: 'doc' undeclared (first use in this function)
uwsgi.c:2202: error: 'xmlNode' undeclared (first use in this function)
uwsgi.c:2202: error: 'element' undeclared (first use in this function)
uwsgi.c:2203: error: 'node' undeclared (first use in this function)
uwsgi.c:2204: error: 'node2' undeclared (first use in this function)
uwsgi.c:2206: error: 'xmlChar' undeclared (first use in this function)
uwsgi.c:2206: error: 'xml_uwsgi_mountpoint' undeclared (first use in
this function)
uwsgi.c:2207: error: 'xml_uwsgi_script' undeclared (first use in this
function)
uwsgi.c:2210: warning: implicit declaration of function 'xmlReadFile'
uwsgi.c:2218: warning: implicit declaration of function
'xmlDocGetRootElement'
uwsgi.c:2231: error: 'XML_ELEMENT_NODE' undeclared (first use in this
function)
uwsgi.c:2261: warning: implicit declaration of function 'xmlGetProp'
uwsgi.c:2261: error: expected ')' before 'xmlChar'
uwsgi.c:2261: warning: type defaults to 'int' in declaration of 'type
name'
uwsgi.c:2292: warning: implicit declaration of function 'xmlFreeDoc'
uwsgi.c:2293: warning: implicit declaration of function
'xmlCleanupParser'
make: *** [main.o] Error 1

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: New Guide to Django install on fresh VPS

2009-12-24 Thread LarryEitel
Hello Leonel,

I watched the Cherokee Videos and will give it a crack. Here is a new
Google Doc that I will use to document the process. If anyone else
reading this has experience with building out a VPS with Cherokee and
Django along with other key packages, please take a look and share
your observations. I can also be Skype'd at larryeitel.
Thank you :)

http://docs.google.com/View?id=ddbbmdr8_14fkvbkgcs

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: New Guide to Django install on fresh VPS

2009-12-23 Thread Leonel Nunez
> I have made more progress on this. For any interested I now have it on
> a published google doc: http://docs.google.com/View?id=ddbbmdr8_12gv8ccdgs
>
> Now I would like to cut my teeth on installing memcached. :)
>
> --
>
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-us...@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.
>
>
>


Great  Document.

But you are installing  Apache and nginx, for a VPS you can try
www.cherokee-project.org and it will serve static content and talk to
django using really a low amount of memory

You can use the wizard for django config.
http://www.cherokee-project.com/screencasts.html#django_flup


Saludos

Leonel




--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: New Guide to Django install on fresh VPS

2009-12-23 Thread Dattatreya M
Awsome, Larry.
If I can catch up with the basics, I sure will like to work with you (in
case you need more hands).

Regards,
D

Dattatreya Mellacheruvu
Graduate Student, Bioinformatics,
The University of Michigan, Ann Arbor.

`The Strongest Principle of growth lies in human choice` ~ George Eliot
(1819-1880)


On Wed, Dec 23, 2009 at 6:58 PM, LarryEitel  wrote:

> I have made more progress on this. For any interested I now have it on
> a published google doc: http://docs.google.com/View?id=ddbbmdr8_12gv8ccdgs
>
> Now I would like to cut my teeth on installing memcached. :)
>
> --
>
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-us...@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-us...@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: New Guide to Django install on fresh VPS

2009-12-23 Thread LarryEitel
I have made more progress on this. For any interested I now have it on
a published google doc: http://docs.google.com/View?id=ddbbmdr8_12gv8ccdgs

Now I would like to cut my teeth on installing memcached. :)

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: New Guide to Django install on fresh VPS

2009-12-22 Thread LarryEitel
Some recommended to include the tools mentioned here:
http://clemesha.org/blog/2009/jul/05/modern-python-hacker-tools-virtualenv-fabric-pip/
ie, pip, virtualenv and fabric.
I will spec these out tomorrow.

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: New Guide to Django install on fresh VPS

2009-12-22 Thread LarryEitel
Thank you I will take a look at that.

In either case, I had to move my notes to a new location:
http://www.evernote.com/pub/larryeitel/techlinux#v=l&n=02179b55-4c75-4081-ba8b-1d478ac6c19b&b=8dd23aa5-cf80-4017-b7a4-36cb7b526c89

Thank you :)

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: New Guide to Django install on fresh VPS

2009-12-22 Thread Christophe Pettus
You might take a look at:


http://thebuild.com/blog/2009/10/16/wordpress-to-djangopostgresql-part-1-installing-postgresql/

Feel free to borrow what you'd like.

On Dec 22, 2009, at 6:05 PM, LarryEitel wrote:

> I am creating a step-by-step guide to build out a fresh VPS with
> production stack for Django. It is on a Wiki at: http://is.gd/5xZ3g
>
> I have more details to fill in. I am motivated by a need to build out
> a production server for a port of a PHP site (http:biblize.com) to
> Django.  If anyone would like to collaborate with me on this, please
> skype me at larryeitel.
>
> Thank you :)
>
> --
>
> You received this message because you are subscribed to the Google  
> Groups "Django users" group.
> To post to this group, send email to django-us...@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 
> .
>
>

--
-- Christophe Pettus
x...@thebuild.com

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.




New Guide to Django install on fresh VPS

2009-12-22 Thread LarryEitel
I am creating a step-by-step guide to build out a fresh VPS with
production stack for Django. It is on a Wiki at: http://is.gd/5xZ3g

I have more details to fill in. I am motivated by a need to build out
a production server for a port of a PHP site (http:biblize.com) to
Django.  If anyone would like to collaborate with me on this, please
skype me at larryeitel.

Thank you :)

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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: Django install

2008-11-20 Thread waltbrad



On Nov 20, 1:22 pm, Steve Holden <[EMAIL PROTECTED]> wrote:
>
>
> On Windows systems, the same result can be achieved by copying the file
> django-trunk/django/bin/django-admin.py to somewhere on your system
> path, for example C:\Python24\Scripts.
>
>

Hello Steve. Yes, I did that. Actually I just ran that script from the
trunk directory. It installed.

So, I'm good to go. The tutorial seems to indicate that I don't have
to install Apache until I embark on production, so I've left that out.

Solved my environment variable problem; I realized included the
program name in the variable path. Once I removed that I could run
django-admin.py from any directory.

Thanks.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Django install

2008-11-20 Thread Steve Holden

waltbrad wrote:
>
> On Nov 20, 1:20 pm, Sahil R Cooner <[EMAIL PROTECTED]> wrote:
>   
>> Have you tried checking out the django documentation, it's gotten a lot
>> better than a year ago.
>>
>> You can find what you're looking for there 
>> at:http://docs.djangoproject.com/en/dev/topics/install/?from=olddocs
>>
>>
>> 
> Hello Sahil. Well, yes. I got lazy there. I was just real resistant to
> installing SVN because I was afraid it was going to gunk up my
> system.  But, after I last posted, I swallowed hard and installed Silk
> Subversion. Then I used that to do download the django-trunk and I
> installed django using the setup.py script.
>
> So, I think I have django installed fine now, (haven't continued with
> the tutorial yet.)
>
> As I went through the docs I see they want you to install Apache. I
> did that last year, so I guess I'll have to do that again. This is
> where I get really confused because I don't understand why I need
> Apache. Should I install Apache before I continue with the tutorial?
>   
You don't need Apache to run the test server, only for production (and
there are options even then).

regards
 Steve


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Django install

2008-11-20 Thread Steve Holden

waltbrad wrote:

> Hi folks.  I'm trying to install on my pc Django without success. I
> was using instantdjango, but I'm told that there is some danger
> because of it's internal webserver?
> Anyway, I downloaded django and put the folder into C:\Python25\Lib
> \site-packages. I also put the path to django-admin.py in my
> environment variables.  When I start up the interpreter I can import
> django fine.  But when I try to run django-admin.py from the command
> line it's not recognized.
> I actually installed django and got it working on another computer
> about a year ago. But, had no time to really get into it. So, now I've
> got time and this computer but can't remember what I did. I wish I
> could just use instantdjango but it seems it would be better to figure
> out a proper installation of django.
> I'm just using SQLite.  I don't want to make this anymore complicated
> than I have to.
It looks like you missed out step 4 from the install instructions at

  http://docs.djangoproject.com/en/dev/topics/install/

"""

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/django/bin/django-admin.py /usr/local/bin

This simply lets you type django-admin.py from within any directory,
rather than having to qualify the command with the full path to the file.

On Windows systems, the same result can be achieved by copying the file
django-trunk/django/bin/django-admin.py to somewhere on your system
path, for example C:\Python24\Scripts.

"""



--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Django install

2008-11-20 Thread waltbrad



On Nov 20, 1:20 pm, Sahil R Cooner <[EMAIL PROTECTED]> wrote:
> Have you tried checking out the django documentation, it's gotten a lot
> better than a year ago.
>
> You can find what you're looking for there 
> at:http://docs.djangoproject.com/en/dev/topics/install/?from=olddocs
>
>
Hello Sahil. Well, yes. I got lazy there. I was just real resistant to
installing SVN because I was afraid it was going to gunk up my
system.  But, after I last posted, I swallowed hard and installed Silk
Subversion. Then I used that to do download the django-trunk and I
installed django using the setup.py script.

So, I think I have django installed fine now, (haven't continued with
the tutorial yet.)

As I went through the docs I see they want you to install Apache. I
did that last year, so I guess I'll have to do that again. This is
where I get really confused because I don't understand why I need
Apache. Should I install Apache before I continue with the tutorial?
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Django install

2008-11-20 Thread Sahil R Cooner


Have you tried checking out the django documentation, it's gotten a lot
better than a year ago.

You can find what you're looking for there at:
http://docs.djangoproject.com/en/dev/topics/install/?from=olddocs

On Thu, Nov 20, 2008 at 10:01:20AM -0800, waltbrad wrote:
> 
> Hi folks.  I'm trying to install on my pc Django without success. I
> was using instantdjango, but I'm told that there is some danger
> because of it's internal webserver?
> 
> Anyway, I downloaded django and put the folder into C:\Python25\Lib
> \site-packages. I also put the path to django-admin.py in my
> environment variables.  When I start up the interpreter I can import
> django fine.  But when I try to run django-admin.py from the command
> line it's not recognized.
> 
> I actually installed django and got it working on another computer
> about a year ago. But, had no time to really get into it. So, now I've
> got time and this computer but can't remember what I did. I wish I
> could just use instantdjango but it seems it would be better to figure
> out a proper installation of django.
> 
> I'm just using SQLite.  I don't want to make this anymore complicated
> than I have to.
> > 

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Django install

2008-11-20 Thread waltbrad

Hi folks.  I'm trying to install on my pc Django without success. I
was using instantdjango, but I'm told that there is some danger
because of it's internal webserver?

Anyway, I downloaded django and put the folder into C:\Python25\Lib
\site-packages. I also put the path to django-admin.py in my
environment variables.  When I start up the interpreter I can import
django fine.  But when I try to run django-admin.py from the command
line it's not recognized.

I actually installed django and got it working on another computer
about a year ago. But, had no time to really get into it. So, now I've
got time and this computer but can't remember what I did. I wish I
could just use instantdjango but it seems it would be better to figure
out a proper installation of django.

I'm just using SQLite.  I don't want to make this anymore complicated
than I have to.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: New Django install on Win Vista-problem

2008-11-18 Thread DSS

thx Karen. That works.

On Nov 17, 11:31 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote:
> On Mon, Nov 17, 2008 at 9:58 PM, DSS <[EMAIL PROTECTED]> wrote:
>
> > I just installed Django 2.6 on my Vista machine; followed installation
> > instructions explicitly.  Python imports Django sucessfully. When I
> > try to run django-admin.py startproject ..., it does not run at the
> > command prompt. I suspect it needs to be in the system path, but I'm
> > not sure.
>
> Yes, unless you want to specify the full path at the command line to
> django-admin.py, you have to either put it in a place that is in your system
> path or add its location to your system path.
>
> Karen
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: New Django install on Win Vista-problem

2008-11-17 Thread Karen Tracey
On Mon, Nov 17, 2008 at 9:58 PM, DSS <[EMAIL PROTECTED]> wrote:

>
> I just installed Django 2.6 on my Vista machine; followed installation
> instructions explicitly.  Python imports Django sucessfully. When I
> try to run django-admin.py startproject ..., it does not run at the
> command prompt. I suspect it needs to be in the system path, but I'm
> not sure.
>
>
Yes, unless you want to specify the full path at the command line to
django-admin.py, you have to either put it in a place that is in your system
path or add its location to your system path.

Karen

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



New Django install on Win Vista-problem

2008-11-17 Thread DSS

I just installed Django 2.6 on my Vista machine; followed installation
instructions explicitly.  Python imports Django sucessfully. When I
try to run django-admin.py startproject ..., it does not run at the
command prompt. I suspect it needs to be in the system path, but I'm
not sure.

Any clues? thx,

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: cannot import name SimpleCookie on new Django install

2008-10-18 Thread Christian Joergensen

Wayne Collier wrote:
> from Cookie import SimpleCookie
> ImportError: cannot import name SimpleCookie

It sounds like your python installation is broken. What about when you 
fire up a plain python shell and type:

 >>> from Cookie import SimpleCookie

Cookie is a bundled module in the standard library for python 2.5 (and 2.4)

Regards,

-- 
Christian Joergensen
http://www.technobabble.dk

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



cannot import name SimpleCookie on new Django install

2008-10-17 Thread Wayne Collier

Hello.I am new to Django and I am having some trouble installing it. I 
running Python 2.5 and mod_python on Apache with RH linux. I installed 
Django-0.95.   When I go to my mysite directory and run "python 
manage.pyrunserver"command, I get the following result:

[EMAIL PROTECTED] mysite]# python manage.py runserver
Traceback (most recent call last):
  File "manage.py", line 11, in 
execute_manager(settings)
  File 
"/usr/local/lib/python2.5/site-packages/Django-0.95.4-py2.5.egg/django/core/management.py",
 
line 1319, in execute_manager
execute_from_command_line(action_mapping, argv)
  File 
"/usr/local/lib/python2.5/site-packages/Django-0.95.4-py2.5.egg/django/core/management.py",
 
line 1271, in execute_from_command_line
action_mapping[action](addr, port, options.use_reloader)
  File 
"/usr/local/lib/python2.5/site-packages/Django-0.95.4-py2.5.egg/django/core/management.py",
 
line 1029, in runserver
from django.core.handlers.wsgi import WSGIHandler
  File 
"/usr/local/lib/python2.5/site-packages/Django-0.95.4-py2.5.egg/django/core/handlers/wsgi.py",
 
line 1, in 
from django.core.handlers.base import BaseHandler
  File 
"/usr/local/lib/python2.5/site-packages/Django-0.95.4-py2.5.egg/django/core/handlers/base.py",
 
line 3, in 
from django import http
  File 
"/usr/local/lib/python2.5/site-packages/Django-0.95.4-py2.5.egg/django/http/__init__.py",
 
line 2, in 
from Cookie import SimpleCookie
ImportError: cannot import name SimpleCookie


This also results when I Django-1.0.  Any help would be greatly appreciated.

Wayne


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Django install issues on Windows in Cygwin.

2008-09-17 Thread Nathan Dabney
I've found that mixing Windows/Cygwin binaries for Python/Django creates
confusing problems.  It's best to treat each environment like the other
doesn't exist with respect to dependencies.

It looks like you are using the Windows binary instead of the one compiled
for cygwin.

-Nathan


On Wed, Sep 17, 2008 at 5:34 AM, draft <[EMAIL PROTECTED]> wrote:

>
> All,
>
> I'm having issues running the django-admin.py script from Cygwin after
> installing Django.  When I run it, I get the following error:
>
> $ django-admin.py
> c:\Python25\python.exe: can't open file '/cygdrive/c/Python25/Lib/site-
> packages/django/bin/django-admin.py': [Errno 2] No such file or
> directory
>
> Note that it's finding the script's correct location as the Django bin
> directory is in my PATH.  And, the file is definitely there and is
> executable:
>
> $ ls -al /cygdrive/c/Python25/Lib/site-packages/django/bin/django-
> admin.py
> -rwx--x--x+ 1 username DomainUsers 128 Dec 30  2006 /cygdrive/c/
> Python25/Lib/site-packages/django/bin/django-admin.py
>
> I've tried re-installing both Django and Python to no avail.  Also,
> it's important to note that this works in Windows, so I would imagine
> it's something wrong with my environment or some setting in Cygwin
> that is preventing this.  Any help is much appreciated.
>
> Thanks,
> David
>
> >
>

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Django install issues on Windows in Cygwin.

2008-09-17 Thread draft

All,

I'm having issues running the django-admin.py script from Cygwin after
installing Django.  When I run it, I get the following error:

$ django-admin.py
c:\Python25\python.exe: can't open file '/cygdrive/c/Python25/Lib/site-
packages/django/bin/django-admin.py': [Errno 2] No such file or
directory

Note that it's finding the script's correct location as the Django bin
directory is in my PATH.  And, the file is definitely there and is
executable:

$ ls -al /cygdrive/c/Python25/Lib/site-packages/django/bin/django-
admin.py
-rwx--x--x+ 1 username DomainUsers 128 Dec 30  2006 /cygdrive/c/
Python25/Lib/site-packages/django/bin/django-admin.py

I've tried re-installing both Django and Python to no avail.  Also,
it's important to note that this works in Windows, so I would imagine
it's something wrong with my environment or some setting in Cygwin
that is preventing this.  Any help is much appreciated.

Thanks,
David

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Error During Django Install on Mac

2007-10-24 Thread bramble

On Oct 24, 2:25 am, jnap <[EMAIL PROTECTED]> wrote:
> I am new at this so I apologize if this is a stupid question...

Hi jnap,

You would probably benefit from learning some basic shell usage. For
example:

* using commands like ``cd``, ``ln``, ``sudo``, ``cp``, and so on.
* how environment variables work (ex. how to set your ``$PATH``)
* how quoting works in the shell (it's different from Python)
* what certain control characters do (ex. Ctrl-c)

You might try reading ``info bash`` (or ``info bash``), or otherwise
look for a beginner tutorial for bash on the web.


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Error During Django Install on Mac

2007-10-24 Thread bramble

On Oct 24, 2:48 am, Ben van Staveren <[EMAIL PROTECTED]> wrote:
> No offense but uh, RTFM?

That wasn't particularly courteous.


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Error During Django Install on Mac

2007-10-24 Thread Jon Atkinson

 > The link should technically go in /usr/local/bin as Django
> was build locally, and it's part of the distributors package set
> :-)

Oops, that should read "it's NOT part of the distributors package set".

--Jon

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Error During Django Install on Mac

2007-10-24 Thread Jon Atkinson

Hi,

> sudo ln -s pathtodjango/bin/django-admin.py /usr/bin/django-admin.py

... that was my next step :-)

The link should technically go in /usr/local/bin as Django
was build locally, and it's part of the distributors package set
:-)

--Jon

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Error During Django Install on Mac

2007-10-24 Thread Kenneth Gonsalves


On 24-Oct-07, at 12:31 PM, jnap wrote:

> Now I get this error: -bash: django-admin.py: command not found when I
> run django-admin.py startproject testproject

sudo ln -s pathtodjango/bin/django-admin.py /usr/bin/django-admin.py

-- 

regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/



--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Error During Django Install on Mac

2007-10-24 Thread Kenneth Gonsalves


On 24-Oct-07, at 12:15 PM, jnap wrote:

>
> anyone?
>
> On Oct 24, 2:36 am, jnap <[EMAIL PROTECTED]> wrote:
>> sorry for another dumb question...but how do i do it as root?

on ubuntu - type sudo ln -s etc
on other distros type su, press enter and enter the root password and  
then execute the command

-- 

regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/



--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Error During Django Install on Mac

2007-10-24 Thread Jon Atkinson

Please could you run the following command in your terminal, and paste
the output into your reply:

echo $PATH

--Jon

On 10/24/07, jnap <[EMAIL PROTECTED]> wrote:
>
> Don't know what RTFM means but sudo works.
>
> Now I get this error: -bash: django-admin.py: command not found when I
> run django-admin.py startproject testproject
>
> I suppose I am running it from the wrong directory but I have tried
> multiple ones and I get the same result with each try.
>
>
> On Oct 24, 2:48 am, Ben van Staveren <[EMAIL PROTECTED]> wrote:
> > No offense but uh, RTFM?
> >
> > (Protip: man sudo, man su)
> >
> > On 24/10/2007, at 1:45 PM, jnap wrote:
> >
> >
> >
> > > anyone?
> >
> > > On Oct 24, 2:36 am, jnap <[EMAIL PROTECTED]> wrote:
> > >> sorry for another dumb question...but how do i do it as root?
> >
> > >> On Oct 24, 2:32 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote:
> >
> > >>> On 24-Oct-07, at 11:55 AM, jnap wrote:
> >
> >  jnap:~ jnap$ ln -s /usr/local/lib/python2.3/site-packages/
> >  django_src/
> >  django/bin/django-admin.py /usr/local/bin/django-admin.py
> >  ln: /usr/local/bin/django-admin.py: Permission denied
> >
> > >>> you have to do it as root
> >
> > >>> --
> >
> > >>> regards
> > >>> kghttp://lawgon.livejournal.comhttp://nrcfosshelpline.in/web/
>
>
> >
>

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Error During Django Install on Mac

2007-10-24 Thread jnap

Don't know what RTFM means but sudo works.

Now I get this error: -bash: django-admin.py: command not found when I
run django-admin.py startproject testproject

I suppose I am running it from the wrong directory but I have tried
multiple ones and I get the same result with each try.


On Oct 24, 2:48 am, Ben van Staveren <[EMAIL PROTECTED]> wrote:
> No offense but uh, RTFM?
>
> (Protip: man sudo, man su)
>
> On 24/10/2007, at 1:45 PM, jnap wrote:
>
>
>
> > anyone?
>
> > On Oct 24, 2:36 am, jnap <[EMAIL PROTECTED]> wrote:
> >> sorry for another dumb question...but how do i do it as root?
>
> >> On Oct 24, 2:32 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote:
>
> >>> On 24-Oct-07, at 11:55 AM, jnap wrote:
>
>  jnap:~ jnap$ ln -s /usr/local/lib/python2.3/site-packages/
>  django_src/
>  django/bin/django-admin.py /usr/local/bin/django-admin.py
>  ln: /usr/local/bin/django-admin.py: Permission denied
>
> >>> you have to do it as root
>
> >>> --
>
> >>> regards
> >>> kghttp://lawgon.livejournal.comhttp://nrcfosshelpline.in/web/


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Error During Django Install on Mac

2007-10-23 Thread Ben van Staveren

No offense but uh, RTFM?

(Protip: man sudo, man su)


On 24/10/2007, at 1:45 PM, jnap wrote:

>
> anyone?
>
> On Oct 24, 2:36 am, jnap <[EMAIL PROTECTED]> wrote:
>> sorry for another dumb question...but how do i do it as root?
>>
>> On Oct 24, 2:32 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote:
>>
>>> On 24-Oct-07, at 11:55 AM, jnap wrote:
>>
 jnap:~ jnap$ ln -s /usr/local/lib/python2.3/site-packages/ 
 django_src/
 django/bin/django-admin.py /usr/local/bin/django-admin.py
 ln: /usr/local/bin/django-admin.py: Permission denied
>>
>>> you have to do it as root
>>
>>> --
>>
>>> regards
>>> kghttp://lawgon.livejournal.comhttp://nrcfosshelpline.in/web/
>
>
> >


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Error During Django Install on Mac

2007-10-23 Thread jnap

anyone?

On Oct 24, 2:36 am, jnap <[EMAIL PROTECTED]> wrote:
> sorry for another dumb question...but how do i do it as root?
>
> On Oct 24, 2:32 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote:
>
> > On 24-Oct-07, at 11:55 AM, jnap wrote:
>
> > > jnap:~ jnap$ ln -s /usr/local/lib/python2.3/site-packages/django_src/
> > > django/bin/django-admin.py /usr/local/bin/django-admin.py
> > > ln: /usr/local/bin/django-admin.py: Permission denied
>
> > you have to do it as root
>
> > --
>
> > regards
> > kghttp://lawgon.livejournal.comhttp://nrcfosshelpline.in/web/


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Error During Django Install on Mac

2007-10-23 Thread jnap

sorry for another dumb question...but how do i do it as root?

On Oct 24, 2:32 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote:
> On 24-Oct-07, at 11:55 AM, jnap wrote:
>
> > jnap:~ jnap$ ln -s /usr/local/lib/python2.3/site-packages/django_src/
> > django/bin/django-admin.py /usr/local/bin/django-admin.py
> > ln: /usr/local/bin/django-admin.py: Permission denied
>
> you have to do it as root
>
> --
>
> regards
> kghttp://lawgon.livejournal.comhttp://nrcfosshelpline.in/web/


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Error During Django Install on Mac

2007-10-23 Thread Kenneth Gonsalves


On 24-Oct-07, at 11:55 AM, jnap wrote:

> jnap:~ jnap$ ln -s /usr/local/lib/python2.3/site-packages/django_src/
> django/bin/django-admin.py /usr/local/bin/django-admin.py
> ln: /usr/local/bin/django-admin.py: Permission denied

you have to do it as root

-- 

regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/



--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Error During Django Install on Mac

2007-10-23 Thread jnap

Here is my current bash_profile in case you need it:


# Setting PATH for MacPython 2.5
# The orginal version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/Current/bin:$
{PATH}"
export PATH=$PATH:/usr/local/bin






On Oct 24, 2:25 am, jnap <[EMAIL PROTECTED]> wrote:
> I am new at this so I apologize if this is a stupid question...
>
> Why do I keep getting a permission denied error when I run the
> following:
>
> jnap:~ jnap$ ln -s /usr/local/lib/python2.3/site-packages/django_src/
> django/bin/django-admin.py /usr/local/bin/django-admin.py
> ln: /usr/local/bin/django-admin.py: Permission denied
>
> Thanks for your help!


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Error During Django Install on Mac

2007-10-23 Thread jnap

I am new at this so I apologize if this is a stupid question...

Why do I keep getting a permission denied error when I run the
following:

jnap:~ jnap$ ln -s /usr/local/lib/python2.3/site-packages/django_src/
django/bin/django-admin.py /usr/local/bin/django-admin.py
ln: /usr/local/bin/django-admin.py: Permission denied

Thanks for your help!


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



new django install

2007-10-03 Thread Matt Davies

Hello everyone

Can anyone recommed a good tutorial on  how to install django mysql
and fastcgi on a Fedora Core 6 box?

It's my box so there's no need to worry about hosting companies not
allowing certain things.

Any help, greatly appreciated.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Macports Django install - which way?

2007-09-18 Thread Dave E

> We're always open to documentation improvements; thanks for offering to help.

The latest version (under revision before becoming HTML) of my
'absurdly simple' try-Django-locally for OS X is here:
ecoconsulting.co.uk/python/django-install.txt

> If you're installing from a downloaded version of Django (rather than 
> macports)
> The standard 'python setup.py install' will work, and will install
> Django into the site-packages of whichever python install is on the
> path at the time.

I did a CL install in the end, and all is well.

> Personally, I find Macports to be a very useful way of getting the
> support libraries in place...

Agreed, but it's an extra layer of complexity for me at this stage.

> I use an svn checkout of Django rather
> than the ports version.

I used 0.96, not confident enough for the svn, but may use in future.

SQLite is already on OS X, that's enough for trying/learning. I have
MySQL too.

> As a guideline, this is what is in my .profile:
> export PATH=/opt/local/bin:/opt/local/sbin:$PATH
> export PATH=/opt/local/lib/pgsql8/bin:$PATH
> export PATH=/opt/local/lib/python2.4/site-packages/django/bin:$PATH
> export 
> PATH=/opt/local/Library/Frameworks/Python.framework/Versions/2.4/bin:$PATH

Now that's really helpful - thanks. I may use Macports in future.

> > I know OS X needs Python elswhere
>
> Define 'needs'. OS X provides Python, but doesn't really use it at a
> core level.

I did read that some (3rd party?) OS X apps use the original Python,
but no problems so far - the 2.5 installer left the 2.3 version
intact.

> The bigger problem is coming up with an easy answer for 'how to
> install Postgres' (or any other database). [...] 'port
> install py-psycopg2' and setting up a few paths is much easier.

Agreed. But in this case I'm deliberately simplifying the setup for
trying out Django in a local environment, and just using SQLite
(already on OS X).

> If you find (or know of) a good set of Postgres/MySQL binaries for OSX
> (including Python bindings), this problem goes away. However, I
> haven't been able to find such a beast.

When I get to the development stage, if I find one I'll post it up
here :-)

>> ---
> > Macports is a good idea [...]
> > but the Python it installs isn't in the place OS X expects it to be,
> > so can't be used easily.
>
> Depends on your definition of easily. I can't say I had much
> difficulty setting up my .profile, but I'm coming from a unix
> background, so I'm used to that sort of thing.

Again, another layer of complexity that I wanted to remove at this
stage. I may well return to Macports when I have more time - I like
the concept. But my tutorial is for people without much Unix
experience (mine? Minimal Solaris 8 years ago, plus whatever FreeBSD I
need in OS X) who want to try out Django with the minimum barriers to
getting it running on OS X. When I get into a real site, I'll document
that too and get feedback on it.

The problem with many of the current guides and some of the
documentation is that it presumes some Unix experience, and covers too
much ground for those who just want to dip their toe in the Django
waters, so that's what I'm trying to remedy. I'm actually aiming to
lure web designers, who want to move towards web development, away
from proprietary or messy or solutions to which web designers tend to
default (like mixing up PHP and HTML too much).

Many thanks for the advice,

Dave


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Macports Django install - which way?

2007-09-17 Thread Russell Keith-Magee

On 9/17/07, Dave E <[EMAIL PROTECTED]> wrote:
>
> After reading about other OS X user's Django install problems, I'm
> attempting to write up the simplest, clearest possible, completely
> unambiguous, instructions for other OS X users here:
> http:ecoconsulting.co.uk/python/django-install.txt
> but obviously I need to get it right first, and...

We're always open to documentation improvements; thanks for offering to help.

> ...I've hit problems with Macports, detailed below. But I can't find
> anywhere how to install Django from within Python (like Perl's CPAN),
> and Macports is actually suggested on the Django site.

If you're installing from a downloaded version of Django (rather than macports)
The standard 'python setup.py install' will work, and will install
Django into the site-packages of whichever python install is on the
path at the time.

Macports is listed as one of the 'prepackaged installations' that may
be helpful if you're on a Mac. However, its not the only way to go.
Personally, I find Macports to be a very useful way of getting the
support libraries in place - in particular, Postgres, which doesn't
provide native Mac installers. I use an svn checkout of Django rather
than the ports version.

The instructions you provide will depend on how you satisfy your
dependencies. Ultimately, you will need to install:

1) Python
2) A database
3) A database Python library
4) Django code.

Macports can be used to provide any of these; personally, I use
Macports to provide 1-3.

As a guideline, this is what is in my .profile:

export PATH=/opt/local/bin:/opt/local/sbin:$PATH
export PATH=/opt/local/lib/pgsql8/bin:$PATH
export PATH=/opt/local/lib/python2.4/site-packages/django/bin:$PATH
export 
PATH=/opt/local/Library/Frameworks/Python.framework/Versions/2.4/bin:$PATH

> I know OS X needs Python elswhere (and I now appear to have 2 Pythons)
> but the running one doesn't have Django in its 'site-packages' dir.

Define 'needs'. OS X provides Python, but doesn't really use it at a
core level. It's not tightly bound to the OS or anything - it's just
there to fill the promise that OSX is 'based on Unix'.

> Looks like I might have to forget Macports and install Django manually
> under the OS X Python (or copy it across), but will this risk being
> mangled by OS X updates? And is there an easy Python 'install django'
> command?

As before - yes; python setup.py install in the Django directory.

The bigger problem is coming up with an easy answer for 'how to
install Postgres' (or any other database). The Apple knowledge base on
setting Postgres starts with 'download the Postgres source tarball',
which isn't a particularly attractive option to me. Then you need to
deal with compiling the psycopg backends, etc. For my money, 'port
install py-psycopg2' and setting up a few paths is much easier.

If you find (or know of) a good set of Postgres/MySQL binaries for OSX
(including Python bindings), this problem goes away. However, I
haven't been able to find such a beast.

> ---
> About Macports:
>
> Macports is a good idea (easy installs and updates, preserves Apple
> stuff, keeps new stuff separate from getting mashed by Apple updates)
> but the Python it installs isn't in the place OS X expects it to be,
> so can't be used easily.

Depends on your definition of easily. I can't say I had much
difficulty setting up my .profile, but I'm coming from a unix
background, so I'm used to that sort of thing.

Yours,
Russ Magee %-)

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Macports Django install - which way?

2007-09-17 Thread Kenneth Gonsalves


On 17-Sep-07, at 4:12 PM, Dave E wrote:

> After reading about other OS X user's Django install problems, I'm
> attempting to write up the simplest, clearest possible, completely
> unambiguous, instructions for other OS X users here:
> http:ecoconsulting.co.uk/python/django-install.txt
> but obviously I need to get it right first, and...

first comment: please do something with wordwrap - in firefox on a  
mac, I have to keep scrolling left and right

>
> ...I've hit problems with Macports, detailed below. But I can't find
> anywhere how to install Django from within Python (like Perl's CPAN),
> and Macports is actually suggested on the Django site.

second comment: MacOS is just a BSD - so the installation is just as  
straightforward as an installation on Linux except that some paths  
are slightly different.

third: you havent touched the database installation part.

and, finally, it is best to run django from the latest svn, so just  
following the basic linux installation instructions for django from  
the tutorial would be the ideal way of installing django on a Mac. If  
you *do* install django from Macports, you have no control over the  
version you are using. So for the django part - just an svn co and a  
symlink to the python site-packages directory is all you need.

-- 

regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/



--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Macports Django install - which way?

2007-09-17 Thread Dave E

After reading about other OS X user's Django install problems, I'm
attempting to write up the simplest, clearest possible, completely
unambiguous, instructions for other OS X users here:
http:ecoconsulting.co.uk/python/django-install.txt
but obviously I need to get it right first, and...

...I've hit problems with Macports, detailed below. But I can't find
anywhere how to install Django from within Python (like Perl's CPAN),
and Macports is actually suggested on the Django site.


-
The steps I took:

1.
Install Python 2.5 from the OS X binary at:
http://www.python.org/ftp/python/2.5.1/python-2.5.1-macosx.dmg

End up with the following - good so far:
python -V:Python 2.5.1
which python:/Library/Frameworks/Python.framework/Versions/Current/bin/
python

The OS X package appears to have replaced Apple's Python 2.3 with
2.5.1 successfully.

2.
Use Macports to install Django 0.96:
sudo port install py25-django-devel

Add the Macports path to my .bash_login (and remove .profile):
export PATH=/opt/local/bin:/opt/local/sbin:$PATH

End up with the following:
django-admin.py gives: (the expected screen of stuff)
but
>>> import django gives: ImportError: No module named django.



The problem:

While installing Django, the Macports dependency thing also installs
Python 2.5 under /opt/local/lib/python2.5/

I know OS X needs Python elswhere (and I now appear to have 2 Pythons)
but the running one doesn't have Django in its 'site-packages' dir.

Looks like I might have to forget Macports and install Django manually
under the OS X Python (or copy it across), but will this risk being
mangled by OS X updates? And is there an easy Python 'install django'
command?


---
About Macports:

Macports is a good idea (easy installs and updates, preserves Apple
stuff, keeps new stuff separate from getting mashed by Apple updates)
but the Python it installs isn't in the place OS X expects it to be,
so can't be used easily. The Django site itself suggests Macports, but
fails to say that the install won't be where the OS X Python expects
it to be.

Dave Everitt


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: django install on mac osx 10.4.8

2007-03-14 Thread Jay Parlar

On 3/14/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Hi everybody,
>
> hope you're all good out there.
>
> I did a few progress with my install.
> i installed python 2.4.
>
> with this install instead of the latest one i could install django
> with the sudo python setup.py install command.
>
> but now i can't seem to start a project.
> when i do the import django line in the terminal i do not have any
> error message again
> but when i try the
>
>  django-admin.py start-project testsite
>
> i get a syntax error message
>
>   File "", line 1
> django-admin.py start-project testsite
> ^
> SyntaxError: invalid syntax


Don't run that command from within the Python interpreter, just do it
from a Terminal command line.

Jay P.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: django install on mac osx 10.4.8

2007-03-14 Thread [EMAIL PROTECTED]

Hi everybody,

hope you're all good out there.

I did a few progress with my install.
i installed python 2.4.

with this install instead of the latest one i could install django
with the sudo python setup.py install command.

but now i can't seem to start a project.
when i do the import django line in the terminal i do not have any
error message again
but when i try the

 django-admin.py start-project testsite

i get a syntax error message

  File "", line 1
django-admin.py start-project testsite
^
SyntaxError: invalid syntax

it says on the documentation page that djang should be installed in a
sit-package folder and that the installer should have linked to it.
when i check in my library folder, django is installed inside the bin
folder of the current pythin version.

would it be the reason why it can't connect to the django admin file?

and how can i reset this link?


cheers

On Mar 12, 4:40 pm, "Jay Parlar" <[EMAIL PROTECTED]> wrote:
> On 3/12/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
>
> > nope i do it from home, never had any problem before, not like i would
> > really have known anyway got problem all the time :),
> > problem isntalling this and that, problem installing rails and so on.
> > shame i really want to give a try atdjangoreviews looks good, better
> > than rail for a designer like me.
>
> I recommend staying away from DarwinPorts. It sometimes works very
> nicely, other times, not so much.
>
> I would insteadinstallPython2.4 and sqlite2 
> fromhttp://pythonmac.org/packages/py24-fat/index.html
>
> (As you're running Tiger, sqlite itself is already installed, you just
> need the Python wrappers).
>
> Theninstallsubversion 
> fromhttp://www.codingmonkeys.de/mbo/Subversion-1.4.3.pkg.zip
>
> TheninstallDjangovia svn (theinstalldocument says how to do that).
>
> Jay P.


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: django install on mac osx 10.4.8

2007-03-12 Thread Jay Parlar

On 3/12/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> nope i do it from home, never had any problem before, not like i would
> really have known anyway got problem all the time :),
> problem isntalling this and that, problem installing rails and so on.
> shame i really want to give a try at django reviews looks good, better
> than rail for a designer like me.
>

I recommend staying away from DarwinPorts. It sometimes works very
nicely, other times, not so much.

I would instead install Python2.4 and sqlite2 from
http://pythonmac.org/packages/py24-fat/index.html

(As you're running Tiger, sqlite itself is already installed, you just
need the Python wrappers).

Then install subversion from
http://www.codingmonkeys.de/mbo/Subversion-1.4.3.pkg.zip

Then install Django via svn (the install document says how to do that).

Jay P.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: django install on mac osx 10.4.8

2007-03-12 Thread [EMAIL PROTECTED]

nope i do it from home, never had any problem before, not like i would
really have known anyway got problem all the time :),
problem isntalling this and that, problem installing rails and so on.
shame i really want to give a try at django reviews looks good, better
than rail for a designer like me.

cheers Jay

On Mar 12, 3:58 pm, "Jay Parlar" <[EMAIL PROTECTED]> wrote:
> On 3/12/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
>
> > well i tried with the forewall and offan it return the same error all
> > the time.
>
> Sorry, I misspoke. I didn't mean firewall, the firewall should have no
> effect. I actually meant proxy. Many corporate environments are behind
> proxies that screw up urllib until you configure things properly.
>
> Jay P.


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: django install on mac osx 10.4.8

2007-03-12 Thread Jay Parlar

On 3/12/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> well i tried with the forewall and offan it return the same error all
> the time.

Sorry, I misspoke. I didn't mean firewall, the firewall should have no
effect. I actually meant proxy. Many corporate environments are behind
proxies that screw up urllib until you configure things properly.

Jay P.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: django install on mac osx 10.4.8

2007-03-12 Thread [EMAIL PROTECTED]

well i tried with the forewall and offan it return the same error all
the time.
i tried agai to get darwin port running ( and the latest mac part as
well)
http://www.rhonabwy.com/wp/2006/07/20/installing-django-on-macos-x-development-version/

but once i downloaded either the dmg or the source file it trip on the
first line
>>> sudo port -d selfupdate
sudo port install subversion
sudo port install sqlite3 py-sqlite python24
sudo port install py-docutils py-mx

so i never get to see te rest



On Mar 12, 2:16 pm, "Jay Parlar" <[EMAIL PROTECTED]> wrote:
> On 3/12/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > Hi everybody,
>
> > i'm trying to install django, i followe dthe instruction on the django
> > web site but it doesn't work
> > been looking around and the only tutorial that i yet understand
> > ( sorry it's al a bit complicated for me ) require to install macport,
> > which i'm not really keen on ( tried earlier for other reasons and got
> > only trouble ).
>
> > playing around i installed the latest release of python 2.5
>
> > then i downloaded again the latest release of django but when i do the
> > install command
>
> > sudo python setup.py install
>
> > Downloadinghttp://cheeseshop.python.org/packages/2.5/s/setuptools/setuptools-0.6...
> > Traceback (most recent call last):
> >...
> > urllib2.HTTPError: HTTP Error 404: Not Found
>
> > And i can't do anything,
>
> > has anybody any idea how to solve this?
>
> Are you behind a firewall? urllib2 can't get through firewalls unless
> you've configured some environment variables.
>
> Jay P.


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: django install on mac osx 10.4.8

2007-03-12 Thread Jay Parlar

On 3/12/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Hi everybody,
>
> i'm trying to install django, i followe dthe instruction on the django
> web site but it doesn't work
> been looking around and the only tutorial that i yet understand
> ( sorry it's al a bit complicated for me ) require to install macport,
> which i'm not really keen on ( tried earlier for other reasons and got
> only trouble ).
>
> playing around i installed the latest release of python 2.5
>
> then i downloaded again the latest release of django but when i do the
> install command
>
> sudo python setup.py install
>
> Downloading 
> http://cheeseshop.python.org/packages/2.5/s/setuptools/setuptools-0.6c1-py2.5.egg
> Traceback (most recent call last):
>...
> urllib2.HTTPError: HTTP Error 404: Not Found
>
> And i can't do anything,
>
> has anybody any idea how to solve this?
>

Are you behind a firewall? urllib2 can't get through firewalls unless
you've configured some environment variables.

Jay P.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



django install on mac osx 10.4.8

2007-03-11 Thread [EMAIL PROTECTED]

Hi everybody,

i'm trying to install django, i followe dthe instruction on the django
web site but it doesn't work
been looking around and the only tutorial that i yet understand
( sorry it's al a bit complicated for me ) require to install macport,
which i'm not really keen on ( tried earlier for other reasons and got
only trouble ).

playing around i installed the latest release of python 2.5

then i downloaded again the latest release of django but when i do the
install command

sudo python setup.py install

Downloading 
http://cheeseshop.python.org/packages/2.5/s/setuptools/setuptools-0.6c1-py2.5.egg
Traceback (most recent call last):
  File "setup.py", line 2, in 
ez_setup.use_setuptools()
  File "/Users/zapata/Desktop/django/Django-0.95.1/ez_setup.py", line
72, in use_setuptools
egg = download_setuptools(version, download_base, to_dir,
download_delay)
  File "/Users/zapata/Desktop/django/Django-0.95.1/ez_setup.py", line
126, in download_setuptools
src = urllib2.urlopen(url)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/urllib2.py", line 121, in urlopen
return _opener.open(url, data)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/urllib2.py", line 380, in open
response = meth(req, response)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/urllib2.py", line 491, in http_response
'http', request, response, code, msg, hdrs)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/urllib2.py", line 418, in error
return self._call_chain(*args)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/urllib2.py", line 353, in _call_chain
result = func(*args)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/urllib2.py", line 499, in http_error_default
raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 404: Not Found

And i can't do anything,

has anybody any idea how to solve this?

thanks 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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Why is my Django install so slow?

2007-01-29 Thread Joe

Well, we figured it out.  The USB bus on the motherboard of the WS was 
failing, and Linux was writing a ridiculous amount of error messages 
to the log, which crippled hard drive IO.  Go figure.

On Jan 15, 9:01 pm, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote:
> On 15-Jan-07, at 10:23 PM, Joe wrote:
>
>
>
> > 
> > StartServers 8
> > MinSpareServers 5
> > MaxSpareServers 20
> > MaxClients 75
> > MaxRequestsPerChild 1024
> > 
>
> > 
> > StartServers 2
> > MaxClients 800
> > MinSpareThreads 25
> > MaxSpareThreads 75
> > ThreadsPerChild 25
> > MaxRequestsPerChild  0
> > make MaxRequestsPerChild like 10 - and then adjust the other 
> > numbers
> accordingly. Max clients should be 20 at the most
>
> --
>
> regards
> kghttp://lawgon.livejournal.comhttp://nrcfosshelpline.in/web/


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why is my Django install so slow?

2007-01-15 Thread Kenneth Gonsalves



On 15-Jan-07, at 10:23 PM, Joe wrote:



StartServers 8
MinSpareServers 5
MaxSpareServers 20
MaxClients 75
MaxRequestsPerChild 1024



StartServers 2
MaxClients 800
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild  0



make MaxRequestsPerChild like 10 - and then adjust the other numbers  
accordingly. Max clients should be 20 at the most


--

regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/



--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why is my Django install so slow?

2007-01-15 Thread Joe


Thanks.  I will try to disable it.  Also, I get an error message when I
try to increase the shared_buffers setting:

FATAL:  could not create shared memory segment: Invalid argument
DETAIL:  Failed system call was shmget(key=5432001, size=182059008,
03600).
HINT:  This error usually means that PostgreSQL's request for a shared
memory segment exceeded your kernel's SHMMAX parameter.  You can either
reduce the request size or reconfigure its max_connections parameter
(currently 1000).
   If the request size is already small, it's possible that it is
less than your kernel's SHMMIN parameter, in which case raising the
request size or reconfiguring SHMMIN is called for.

   The PostgreSQL documentation contains more information about
shared memory configuration.

But I think I know how to fix that.  Thanks for all your help!


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why is my Django install so slow?

2007-01-15 Thread Jeremy Dunck


On 1/15/07, Joe <[EMAIL PROTECTED]> wrote:
...

And postgres settings:

max_connections = 1000
shared_buffers = 2000


You'll want to read these:
http://www.jacobian.org/writing/2005/dec/12/django-performance-tips/
http://www.revsys.com/writings/postgresql-performance.html
http://www.powerpostgresql.com/Downloads/annotated_conf_80.html

That shared_buffers setting is woefully low for a machine w/ 6GB of
RAM.  That's 2000 * 8k  =  16MB  for all shared buffer space; you want
something more like 10% of RAM.  (I'm using 100,000 on a dedicated
server w/ 4GB as a quick-n-dirty setting.  It serves ~1M hits per day
and load is rarely over 0.3.

But yeah, almost certainly the specific problem you're seeing is due
to KeepAlive.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why is my Django install so slow?

2007-01-15 Thread Istvan Albert


Joe wrote:


However, as little as 5000 hits a day brings my site down to a crawl
during peak hours!  The funny thing is, I have plenty of free ram space
and processor during these peak hours.


Something must be wrong with the setup. Unless all of these users come
in the during the same minute. In fact you should be able to serve 5000
requests per hour even with the builtin webserver (in multithreaded
mode that is).

I'm guessing that some process is waiting on a resource. Some detective
work is in order. Use ab to stress test your system. Start with
hammering a bit just on the apache server itself.Then write a simple
django site that does very little other than access the database to
fetch some rows, test that too, log each access and analyze ... and so
on.

i.


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why is my Django install so slow?

2007-01-15 Thread James Bennett


On 1/15/07, Joe <[EMAIL PROTECTED]> wrote:

KeepAlive On
MaxKeepAliveRequests 500
KeepAliveTimeout 2


First step: kill keep-alive. With separate app and media servers it
doesn't really serve any purpose, and it ties up the process until
timeout.

--
"May the forces of evil become confused on the way to your house."
 -- George Carlin

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why is my Django install so slow?

2007-01-15 Thread Joe


I would have to guess that they are slow (dialup or slow DSL).  Here
are some of my apache config settings:

TimeOut 300
KeepAlive On
MaxKeepAliveRequests 500
KeepAliveTimeout 2


StartServers 8
MinSpareServers 5
MaxSpareServers 20
MaxClients 75
MaxRequestsPerChild 1024



StartServers 2
MaxClients 800
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild  0


And postgres settings:

max_connections = 1000
shared_buffers = 2000

Other settings not listed have been left at their defaults.

Here is another tidbit that may help:  When you go to the site when it
is slow, the browser seems to sit idley for 2-10 seconds, then opens
the page very rapidly.  It is almost like you have to stand in line to
get your page, but once you are getting it, it is fast.  I can't seem
to pin this on either Apache or Postgres.


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why is my Django install so slow?

2007-01-15 Thread James Bennett


On 1/15/07, Joe <[EMAIL PROTECTED]> wrote:

I would be glad to offer as much information as possible, I just really
need a direction to start looking. I have read performance tuning
guides (including the one by Jacob) and implemented the suggestions.
None seem to work.


Really silly question, but do you know anything about the average
speed of your visitors' internet connections? I've seen situations
where Apache processes end up sitting around essentially idle because
they're just "spoon-feeding" data out to clients on dialup...

--
"May the forces of evil become confused on the way to your house."
 -- George Carlin

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why is my Django install so slow?

2007-01-15 Thread Joe


A separate Apache install on a separate server.  We have three separate
physical machines: a web server, file server and DB server


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why is my Django install so slow?

2007-01-15 Thread Joe


I would be glad to offer as much information as possible, I just really
need a direction to start looking. I have read performance tuning
guides (including the one by Jacob) and implemented the suggestions.
None seem to work.


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why is my Django install so slow?

2007-01-15 Thread James Bennett


On 1/15/07, Joe <[EMAIL PROTECTED]> wrote:

Whenever someone goes to the site (the home page), a new database
connection is created with the Django database.  I have caching
enabled:


A couple possibilities:

* If you have the session middleware enabled, sessions (even for
anonymous users) are stored in the database between visits, and a
return visit means looking up the session based on the session cookie.
* If you have the authentication middleware enabled, Django will look
up logged-in users in the DB when they hit the site.

That said, it's generally hard to debug this sort of thing without a
lot of detail; we do over a million pageviews a day on an amount of
hardware that'd probably surprise most people, so I know Django can
handle the traffic ;)

--
"May the forces of evil become confused on the way to your house."
 -- George Carlin

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why is my Django install so slow?

2007-01-15 Thread Noah


Is your media being served by the Apache instance serving Django or a
separate Apache install?


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why is my Django install so slow?

2007-01-15 Thread Joe


I would appreciate ANY idea, no matter how far-fetched it may seem.  I
will also gladly provide further information if you need 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
-~--~~~~--~~--~--~---



Why is my Django install so slow?

2007-01-15 Thread Joe


I am running Django on a webserver in conjunction with a fileserver and
a database server.  All of these machines have over 6 gigs of ram and
dual core Xeon processors.  They also are running on raid-5 HDD.

However, as little as 5000 hits a day brings my site down to a crawl
during peak hours!  The funny thing is, I have plenty of free ram space
and processor during these peak hours.  I am not really sure why this
is happening, but I suspect it has something to do with Django and here
is why:

Whenever someone goes to the site (the home page), a new database
connection is created with the Django database.  I have caching
enabled:

CACHE_MIDDLEWARE_SECONDS = 300
CACHE_MIDDLEWARE_KEY_PREFIX = ''
CACHE_BACKEND = "file:///data/cache"

so I am a little confused as to why a new DB connection is even opened.
Shouldn't it only open a new connection when the page doesn't exist in
cache?

I have tried increasing the number of Apache and Postgres users, as
well as increasing the timeout settings.  I made sure to give all of
the sites a unique PythonInterpreter name as well.

SPECS:
Red Hat ES 4
Postgres 8.0.7
Apache 2.0.52
mod_python


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---