Re: django installation

2017-12-14 Thread Egor Smolyakov
Seems like you use python 2. Django 2.0 doesn't support second version of Django, only third. On 15/12/2017, bishalrijal...@gmail.com wrote: > > > how can i fix this > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from t

Re: django installation

2017-12-14 Thread Egor Smolyakov
UPD: Seems like you use python 2. Django 2.0 doesn't support second version of Python, only third. On 15/12/2017, Egor Smolyakov wrote: > Seems like you use python 2. Django 2.0 doesn't support second version > of Django, only third. > > > On 15/12/2017, bishalrijal...@gmail.com wrote: >> >> >>

Re: Django installation guide on windows is not correct

2016-02-02 Thread Luis Zárate
did you have installed pip ? https://pip.pypa.io/en/stable/installing/ what version of pip do you have? -- 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-

Re: Django installation issue on Win 7 Pro 64 Bits

2014-09-26 Thread Ivo Roupa
Ezequiel, I followed your sugestion and run cmd as administrator (which I didn't know it was possible) and everything went fine. I have already Django installed and working. I'm already using PyCharm Community 3.4. Thank you a lot. Ivo On Friday, 26 September 2014 04:29:15 UTC+1, Ezequiel Ber

Re: Django installation issue on Win 7 Pro 64 Bits

2014-09-25 Thread Ezequiel Bertti
Try to run your CMD on administration rights, is like *sudo *on unix system... http://technet.microsoft.com/pt-br/library/cc947813(v=ws.10).aspx I think is better install the setup_tools, (easy_install and pip) to install django and another projects in your python. Try to use jetbrains IDE for p

Re: Django installation issue on Win 7 Pro 64 Bits

2014-09-25 Thread Mike Dewhirst
On 26/09/2014 10:17 AM, Ivo Roupa wrote: Hello, My OS is Win 7 Pro 64 Bits, I have Python 2.7 correctly installed and I'm trying to install Django 1.7 but I'm getting the following error: "c:\Program Files (x86)\Python27\lib\site_packages\win32com\gwn_py\__init__.py: Permission denie

RE: Django installation issue on Win 7 Pro 64 Bits

2014-09-25 Thread peterqi
django-users+unsubscr...@googlegroups.com Date: Thu, 25 Sep 2014 17:17:08 -0700 From: iro...@gmail.com To: django-users@googlegroups.com Subject: Django installation issue on Win 7 Pro 64 Bits Hello, My OS is Win 7 Pro 64 Bits, I have Python 2.7 correctly installed and I'm trying to install Dja

Re: django installation

2014-06-11 Thread Bill Freeman
Still, the OP's command should have worked. The most likely problem is that Django was installed to a different python than the one he gets when he types "python" at the shell. He does not say how he installed Django, so it is hard to advise. On Wed, Jun 11, 2014 at 6:23 AM, Daniel Roseman wr

Re: django installation

2014-06-11 Thread Daniel Roseman
On Wednesday, 11 June 2014 11:00:38 UTC+1, Srinivas Reddy T wrote: > > There is no need to install virtualenv to install Django. > While this is technically correct, it is not good advice to give to a newbie. Experienced developers should be encouraging best practice among newcomers, and to be ho

Re: django installation

2014-06-11 Thread Sreenivas Reddy T
There is no need to install virtualenv to install Django. On 11/06/2014 1:56 pm, "Pavithra M H" wrote: > hi, first of all you should create an virtual environment and then u have > to install django, the detailed procedure is given here " > > http://www.openbookproject.net/courses/webappdev/units

Re: django installation

2014-06-11 Thread Pavithra M H
hi, first of all you should create an virtual environment and then u have to install django, the detailed procedure is given here " http://www.openbookproject.net/courses/webappdev/units/webappdev2/resources/django_virtualenv.html"; On Wednesday, June 11, 2014 11:10:01 AM UTC+5:30, David Moya wr

Re: django installation

2014-06-11 Thread Mike Dewhirst
On 11/06/2014 3:40 PM, David Moya wrote: So i supposedly installed Django because on the terminal, after going through the whole process of installation, it says "Successfully installed Django". However, when i try to run the command: python -c "import django; print(django.get_version())"I get:Im

Re: Django installation on Hostgator

2014-05-01 Thread Todong
Do you meet a problem of setting up CGI for python? I found this post which may be helpful to you: Python CGI setup for hostgator hosting On Thursday, January 3, 2013 8:32:10 AM UTC+8, Gjorge Karakabakov wrote: > > Hi, I've crea

Re: Django installation on vanilla Mac OSX 10.8.2 mountain lion

2013-08-03 Thread Sithembewena Lloyd Dube
I installed Django successfully. If ever caught in the same situation, try using the "sudo" command :-) Thanks! On Fri, Aug 2, 2013 at 8:31 PM, Nikolas Stevenson-Molnar < nik.mol...@consbio.org> wrote: > Right: wget isn't necessary when you have a GUI. However, chances are > you'll need gcc for

Re: Django installation on vanilla Mac OSX 10.8.2 mountain lion

2013-08-02 Thread Nikolas Stevenson-Molnar
Right: wget isn't necessary when you have a GUI. However, chances are you'll need gcc for something eventually (e.g., any package that isn't pure Python), so it's probably worth installing XCode /w command line tools package (incl. gcc) anyway. I agree it's a hassle to install everything else when

Re: Django installation on vanilla Mac OSX 10.8.2 mountain lion

2013-08-02 Thread Justin Michalicek
I install it on my Mac running 10.8.4 using pip on a pretty regular basis for starting new projects and testing things. I use postgres from homebrew, virtualenv and virtualenvwrapper installed as system packages, then install django as needed into virtualenvs using pip. On Friday, August 2, 20

Re: Django installation on vanilla Mac OSX 10.8.2 mountain lion

2013-08-02 Thread Thomas Lockhart
On 8/2/13 7:41 AM, Sithembewena Lloyd Dube wrote: Hi everyone, I just began using a new Mac at work (running OSX 10.8.2 Mountain Lion) and it seems such a mission to install Django. Python 2.7.2. is already installed. Following the official Django installation instructions, I get no further t

Re: Django installation on vanilla Mac OSX 10.8.2 mountain lion

2013-08-02 Thread Josh Finnie
You can get the C compiler using this: https://github.com/kennethreitz/osx-gcc-installer No need to install XCode. Josh Finnie -- mobile: (860) 716-5996 home: (202) 657-5346 On Fri, Aug 2, 2013 at 10:50 AM, Larry Martell wrote: > On Fri, Aug 2, 2013 at 8:41 AM

Re: Django installation on vanilla Mac OSX 10.8.2 mountain lion

2013-08-02 Thread Larry Martell
On Fri, Aug 2, 2013 at 8:41 AM, Sithembewena Lloyd Dube wrote: > Hi everyone, > > I just began using a new Mac at work (running OSX 10.8.2 Mountain Lion) and > it seems such a mission to install Django. Python 2.7.2. is already > installed. Following the official Django installation instructions,

Re: Django installation on vanilla Mac OSX 10.8.2 mountain lion

2013-08-02 Thread François Schiettecatte
Use curl instead, it is included by default in Mac OS X: macpro: ~ > which curl /usr/bin/curl François On Aug 2, 2013, at 10:41 AM, Sithembewena Lloyd Dube wrote: > Hi everyone, > > I just began using a new Mac at work (running OSX 10.8.2 Mountain Lion) and > it seems such a mission to inst

RE: Django installation on Hostgator

2013-01-04 Thread bb6xt
Hi Gjorge, I haven't used Hostgator but I believe just extracting the required packages into project root should work. Here what am proposing: myproj/ myproj/ django/ django_extensions/ South This way you simply upload your project to the server along with the dependencies. disla

Re: Django installation on Hostgator

2013-01-04 Thread Gjorge Karakabakov
Thank you all for your answers - I decided to switch the hosting service to Webfaction . They have lots of tutorials and great support. On Thursday, 3 January 2013 01:32:10 UTC+1, Gjorge Karakabakov wrote: > > Hi, I've created a Django project but c

Re: Django installation on Hostgator

2013-01-03 Thread Avraham Serour
Hi, I'm also using hostgator to host a django project. first of all note that they have different plans with different features, what I'm going to write applies to their shared hosting plans. Looks like they are using some version of centos, which comes with python 2.6 I believe. Installing a pyth

Re: Django installation on Hostgator

2013-01-02 Thread John Neumann
You can also try this: https://my.hostgator.com/cgi/help/530 and/or this: https://my.hostgator.sg/cgi/help/python-install though iric it was riddled with issues. Been a bit since I had to do it without the ability to install things intelligently. Personally I'd suggest trying to install virtuale

Re: Django installation on Hostgator

2013-01-02 Thread John Neumann
You would be correct. You cannot install anything else on HostGator (it's why I left them despite their fantastic customer support). You can see what they do have installed here: http://support.hostgator.com/articles/hosting-guide/hardware-software/python-modules Outside of those things you'r

Re: Django installation error

2012-05-24 Thread Karen Tracey
On Thu, May 24, 2012 at 4:19 PM, jggal...@prodigy.net.mx < jggal...@prodigy.net.mx> wrote: > D:\python_27\Lib\site-packages\Django-1.4>python > Python 2.4.5 (#1, Jul 22 2011, 02:01:04) > Python 2.4 is too old for Django 1.4. You need to have Python 2.5, 2.6, or 2.7 installed, see: https://docs.dj

Re: Django installation error: Cannot install Django in Python site-package

2011-07-06 Thread Ed Castano
You hit the nail on the head. The command import django executed in the Python interpreter. Getting started seems like a giant uphill battle, but fortunately I am quite determined. It also helps to have helpful people like you supporting my learning. Thanks again! -Ed On Jul 6, 2:44 pm, And

Re: Django installation error: Cannot install Django in Python site-package

2011-07-06 Thread Andre Terra
Hello, Ed A few tips to get you going on the right track: 1) If *Python can't find Django*, it's because it's *not on your PYTHONPATH*. If you have multiple Python installs, it gets even more complex as *> manage.py* can yield different results from* > python manage.py*, depending on how your fi

Re: Django installation

2009-05-10 Thread Margie
At http://www.djangoproject.com/download/, Option 2 is actually the 1.1 Beta (which does not require subversion). I've been using that for some time and I find that the additions that have been made to the admin interface are really very nice. For example, you can edit fields in the admin interf

Re: Django installation

2009-05-10 Thread Wayne Koorts
Hi, > As I have read the instruction they need me to download django 1.0.2 > for option 1 and option 2 it required subversion of django. I would > like to ask the group that can I just take the option 1 and no need to > take the second option or not? if not please tell me what is option 2 > use f

Re: Django installation

2009-03-26 Thread Karen Tracey
On Thu, Mar 26, 2009 at 3:56 AM, Phonethics wrote: > > Coming from a PHP background, I am starting to dive into Django. > Im using Ubuntu 8.10 and I didnt install Django via apt-get. > > I downloaded Django-1.1-beta-1.tar.gz > Unzipped to /home/username/code/django > sudo python setup.py install

Re: Django installation on Linux

2009-02-11 Thread rg
Ohh I see. I'll reinstall a newer one. Thanks! On Feb 11, 9:27 pm, Alex Gaynor wrote: > On Wed, Feb 11, 2009 at 10:26 PM, rg wrote: > > > 2.2.3. > > > On Feb 11, 12:21 pm, Alex Gaynor wrote: > > > On Wed, Feb 11, 2009 at 12:20 PM, rg wrote: > > > > > So I'm trying to install Django on a Linux

Re: Django installation on Linux

2009-02-11 Thread Alex Gaynor
On Wed, Feb 11, 2009 at 10:26 PM, rg wrote: > > 2.2.3. > > > On Feb 11, 12:21 pm, Alex Gaynor wrote: > > On Wed, Feb 11, 2009 at 12:20 PM, rg wrote: > > > > > So I'm trying to install Django on a Linux server (I don't have root > > > access) and when I run > > > $ python setup.py install > > >

Re: Django installation on Linux

2009-02-11 Thread rg
2.2.3. On Feb 11, 12:21 pm, Alex Gaynor wrote: > On Wed, Feb 11, 2009 at 12:20 PM, rg wrote: > > > So I'm trying to install Django on a Linux server (I don't have root > > access) and when I run > > $ python setup.py install > > > I get the following error: > > >  File "setup.py", line 48, in

Re: Django installation on Linux

2009-02-11 Thread Alex Gaynor
On Wed, Feb 11, 2009 at 12:20 PM, rg wrote: > > So I'm trying to install Django on a Linux server (I don't have root > access) and when I run > $ python setup.py install > > I get the following error: > > File "setup.py", line 48, in ? >root_dir = os.path.dirname(__file__) > NameError: name

Re: django installation problem

2009-01-12 Thread Karen Tracey
On Mon, Jan 12, 2009 at 2:31 PM, bconnors wrote: > > At my pythonpath directory I type in: > > Python django-admin.py > > and I get : > > Type 'django-admin.py help' for usage, which is : > What is it you want to do? You get the "here's how to get help" message because you haven't provided any

Re: Django installation issue

2008-07-17 Thread James Matthews
I don't see much but it seems your aren't mapping you urls properly. Please post your urls.py on http://dpaste.com/ then email the link. On Thu, Jul 17, 2008 at 4:48 AM, zbiju <[EMAIL PROTECTED]> wrote: > > Hi guys, > > I'm noobie with python and django but I would like to try it. > I have instal

Re: Django Installation Issue on Shared Hositng

2008-05-28 Thread A
Thanks for the assistance. A On May 28, 3:46 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi > > On May 28, 3:08 am, A <[EMAIL PROTECTED]> wrote: > > > I am have some issues setting up Django on shared web hosting. I have > > searched around and tried a few fixes as posted to no avail.

Re: Django Installation Issue on Shared Hositng

2008-05-28 Thread [EMAIL PROTECTED]
Hi On May 28, 3:08 am, A <[EMAIL PROTECTED]> wrote: > I am have some issues setting up Django on shared web hosting. I have > searched around and tried a few fixes as posted to no avail. Linux > hosting environment. I get the following error message: > > Traceback (most recent call last): >

Re: Django installation problem ...

2008-05-02 Thread Karen Tracey
On Fri, May 2, 2008 at 5:27 PM, AY <[EMAIL PROTECTED]> wrote: > > Following the instruction on Django tutorial #4, I had encounted the > following problem: > > On the website of http://localhost:8000/polls/ ...it displays only one > line of information ...". What's up? " > > and on the website of

Re: Django Installation Questions on Ubuntu

2008-04-21 Thread Andrew English
That was the problem. I misunderstood the documentation when it said to change projectname.settings to the name of my settings file. I appreciate the help! Thanks. On Mon, Apr 21, 2008 at 5:41 PM, Thomas Kerpe <[EMAIL PROTECTED]> wrote: > > > > Hi khayman, > > Replace: > SetEnv DJANGO_SETTINGS

Re: Django Installation Questions on Ubuntu

2008-04-21 Thread Thomas Kerpe
> Hi khayman, Replace: SetEnv DJANGO_SETTINGS_MODULE settings.py With: SetEnv DJANGO_SETTINGS_MODULE projectname.settings //Thomas Am 21.04.2008 um 23:06 schrieb khayman: > > I have installed Apache, modpython and Django via apt-get. Apache and > modpython are working (I can serve normal files

Re: Django installation on dreamhost

2007-03-08 Thread Equerm
gordyt skreiv: > Howdy Equerm, > > I have some notes posted on using Django with Dreamhost here: > > http://www.gordontillman.info/Development/DjangoDreamhost > > --gordy Thanks, I'll check it out :) --~--~-~--~~~---~--~~ You received this message because you are

Re: Django installation on dreamhost

2007-03-08 Thread Equerm
chasfs skreiv: > Can you set up your env so it it matches what fcgi has and then run > manage.py shell? If that works, use the shell to try to access the > database. The other thing that might help is to look at the logs, > likely in ~/logs/django.gigzor.com. > > Thanks, > -chasfs > http://zdeci

Re: Django installation on dreamhost

2007-03-07 Thread gordyt
Howdy Equerm, I have some notes posted on using Django with Dreamhost here: http://www.gordontillman.info/Development/DjangoDreamhost --gordy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group.

Re: Django installation on dreamhost

2007-03-07 Thread chasfs
Can you set up your env so it it matches what fcgi has and then run manage.py shell? If that works, use the shell to try to access the database. The other thing that might help is to look at the logs, likely in ~/logs/django.gigzor.com. Thanks, -chasfs http://zdecisions.com On Mar 7, 5:35 am,

Re: django installation on mac

2006-08-03 Thread Adrian Holovaty
On 8/3/06, richard mendes <[EMAIL PROTECTED]> wrote: > as to the recommendation from Adrian i tried to install the newest > version but i got an error that said it was missing something and i > had to install a older version. I will try to install it in a later > stadium. Hi Richard, Would you m

Re: django installation on mac

2006-08-03 Thread richard mendes
Steven, Thank's for the advice,that did the trick. as to the recommendation from Adrian i tried to install the newest version but i got an error that said it was missing something and i had to install a older version. I will try to install it in a later stadium. Richard --~--~-~--~

Re: django installation on mac

2006-08-03 Thread Adrian Holovaty
On 8/3/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: "/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/Django-0.91-py2.4.egg/django/core/db/__init__.py", > line 23, in ? Hi Richard, This doesn't answer your question, but I'd strongly recommend that you use Django

Re: django installation on mac

2006-08-03 Thread Steven Armstrong
On 08/03/06 20:50, [EMAIL PROTECTED] wrote: > Hello Django Users, > > I'm trying to install Django on a mac os x (10.3) but i'm experiencing > some problems i can't solve. > When i run import django in mu interpreter it's working fine but when i > start the server i get the following error messag