Re: installation of Django

2021-12-18 Thread Lhuis Felippe Robles
Hello eveyone!!, I'm also new to Django, hoping that this also helps Hacke, I'll describe the steps I did in order to install Django in my 64bit windows laptop. 1. I had already python in my computer but I had to update to Python 3.7.4 as well as get the latest version of 'pip' in order to down

installation of Django

2021-12-15 Thread mohamed farhan
hello my dear friends just would like to know how to install Django using pip install Django==4.0 well this code wasn't working for me and being the first time user of both python and Django, feeling bit confused so could u guys help me out. -- You received this message because you are subscri

Re: installation of django

2020-02-13 Thread Mohammed Alnajdi
Try this pip —default-timeout=10 -v install django Your problem is either internet or antivirus. > > On 13 Feb 2020, at 8:36 AM, paarull shukla > wrote: > >  > Sir please help me out. I m not able to install it.. Getting trouble since 5 > days back > >> On Thu, 13 Feb, 2020, 5:29 AM Di

Re: installation of django

2020-02-12 Thread paarull shukla
Sir please help me out. I m not able to install it.. Getting trouble since 5 days back On Thu, 13 Feb, 2020, 5:29 AM Dimitri Forster, wrote: > Hey Paarul, > > The problem is that you are trying to call pip from the command prompt > directly. > Try *py -m pip install django* and it should work.

Re: installation of django

2020-02-12 Thread Dimitri Forster
Hey Paarul, The problem is that you are trying to call pip from the command prompt directly. Try *py -m pip install django* and it should work. Better yet you could: 1. first create a new directory in a location of your choice ; >* md directory_name* 2. Go to the newly created directory

Re: installation of django

2020-02-12 Thread Mehul Anshumali
Follow this link https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django/development_environment On Wed, Feb 12, 2020, 1:00 PM paarull shukla wrote: > Ok so virtual environment I have to search in cmd or like google > > On Wed, 12 Feb, 2020, 12:50 PM Mehul Anshumali, < > mehulanshuma

Re: installation of django

2020-02-12 Thread Sathiya S
try pip install --upgrade django On Wed, Feb 12, 2020 at 1:00 PM paarull shukla wrote: > Ok so virtual environment I have to search in cmd or like google > > On Wed, 12 Feb, 2020, 12:50 PM Mehul Anshumali, < > mehulanshumali...@gmail.com> wrote: > >> Try install virtual environment and in tha

Re: installation of django

2020-02-11 Thread Nur Mohsin
Hi, follow this official documentation. https://docs.djangoproject.com/en/3.0/howto/windows/ let me know if you don't understand any part. On Wed, Feb 12, 2020 at 1:31 PM paarull shukla wrote: > Ok so virtual environment I have to search in cmd or like google > > On Wed, 12 Feb, 2020, 12:50 P

Re: installation of django

2020-02-11 Thread paarull shukla
Ok so virtual environment I have to search in cmd or like google On Wed, 12 Feb, 2020, 12:50 PM Mehul Anshumali, wrote: > Try install virtual environment and in that install django. > You can search - setup Virtual environment and install django . > > On Tue, Feb 11, 2020, 9:43 PM paarull shukl

Re: installation of django

2020-02-11 Thread Mehul Anshumali
Try install virtual environment and in that install django. You can search - setup Virtual environment and install django . On Tue, Feb 11, 2020, 9:43 PM paarull shukla wrote: > heloo guys i m not able to install django please help me it .i m facing > issue last 10 days . i m getting collecting

Re: installation of django

2020-02-11 Thread HyTech Innovating with technology
Try pip install django==2.1.7 On Tue, Feb 11, 2020, 17:13 paarull shukla wrote: > heloo guys i m not able to install django please help me it .i m facing > issue last 10 days . i m getting collecting django after tht installation > not started > > -- > You received this message because you are s

Re: installation of django

2020-02-11 Thread Shubham Mishra
pip3 install Django On Tue, Feb 11, 2020, 21:43 paarull shukla wrote: > heloo guys i m not able to install django please help me it .i m facing > issue last 10 days . i m getting collecting django after tht installation > not started > > -- > You received this message because you are subscribed

installation of django

2020-02-11 Thread Naynesh Rathod
Check system environment veriable -- 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 view this discussion on the web

Re: installation of django

2020-02-11 Thread Shainny Martinez
Hello! In this direction you can find what you are looking for: https://tutorial.djangogirls.org/es/django_installation/ El mar., 11 de feb. de 2020 12:54 PM, Jatin Agrawal escribió: > you must first create a virtual environment and activate it and then > install django in that virtual environme

Re: installation of django

2020-02-11 Thread paarull shukla
Ya rht I already did. 3.7.3 . I installed 3 to 4 version and in everyone I m facing same problem On Tue, 11 Feb, 2020, 10:24 PM Jatin Agrawal, wrote: > you can install some different version of django also instead of 3.0 > > On Tue, Feb 11, 2020 at 9:53 PM Jatin Agrawal > wrote: > >> read the d

Re: installation of django

2020-02-11 Thread paarull shukla
Ok dear thnks On Tue, 11 Feb, 2020, 10:24 PM Jatin Agrawal, wrote: > you must first create a virtual environment and activate it and then > install django in that virtual environment. search for how to create a > virtual environment for django projects on the internet. > > On Tue, Feb 11, 2020 a

Re: installation of django

2020-02-11 Thread JEGATHEESWARAN SUNDARAVADIVEL
Upgrade your pip version On Tue, 11 Feb 2020 at 21:44, paarull shukla wrote: > heloo guys i m not able to install django please help me it .i m facing > issue last 10 days . i m getting collecting django after tht installation > not started > > -- > You received this message because you are subs

Re: installation of django

2020-02-11 Thread Jatin Agrawal
https://www.codingforentrepreneurs.com/blog/install-python-django-on-windows visit thig website and try to follow the instructions given on it. On Tuesday, February 11, 2020 at 9:44:28 PM UTC+5:30, paarull shukla wrote: > > heloo guys i m not able to install django please help me it .i m facing

Re: installation of django

2020-02-11 Thread Jatin Agrawal
you must first create a virtual environment and activate it and then install django in that virtual environment. search for how to create a virtual environment for django projects on the internet. On Tuesday, February 11, 2020 at 9:44:28 PM UTC+5:30, paarull shukla wrote: > > heloo guys i m not

Re: installation of django

2020-02-11 Thread Jatin Agrawal
you can install some different version of django also instead of 3.0 On Tue, Feb 11, 2020 at 9:53 PM Jatin Agrawal wrote: > read the django documentation for installing it. > > https://docs.djangoproject.com/en/3.0/topics/install/ > > On Tue, Feb 11, 2020 at 9:51 PM paarull shukla < > shukla.paa

Re: installation of django

2020-02-11 Thread Jatin Agrawal
read the django documentation for installing it. https://docs.djangoproject.com/en/3.0/topics/install/ On Tue, Feb 11, 2020 at 9:51 PM paarull shukla wrote: > No. Not an error but getting collecting django. After that installation > didn't start > > On Tue, 11 Feb, 2020, 9:49 PM Irfan Khan, wr

Re: installation of django

2020-02-11 Thread Jatin Agrawal
you must first create a virtual environment and activate it and then install django in that virtual environment. search for how to create a virtual environment for django projects on the internet. On Tue, Feb 11, 2020 at 9:43 PM paarull shukla wrote: > heloo guys i m not able to install django p

Re: installation of django

2020-02-11 Thread paarull shukla
Sure I m just waiting for power.. After tht I m connecting.. Please can u wait for some time On Tue, 11 Feb, 2020, 10:05 PM Desh Deepak, wrote: > Hi, > > > If you unable install django till now, you can connect your computer with > my computer then i can solve the problem easily. > > Or call on

Re: installation of django

2020-02-11 Thread Mohammed Alnajdi
it might be blocked by your antivirus. example i have kaspersky. it block any pip try to install. On Tue, Feb 11, 2020 at 7:35 PM Desh Deepak wrote: > Hi, > > > If you unable install django till now, you can connect your computer with > my computer then i can solve the problem easily. > > Or cal

Re: installation of django

2020-02-11 Thread Desh Deepak
Hi, If you unable install django till now, you can connect your computer with my computer then i can solve the problem easily. Or call on +91 7011101001 for more information. Thank & regards Desh Deepak +91 7011101001 On Tue, 11 Feb 2020, 21:58 Gregory Vaks, wrote: > I would try to open ne

Re: installation of django

2020-02-11 Thread paarull shukla
Internet connection is fine... On Tue, 11 Feb, 2020, 10:00 PM paarull shukla, wrote: > Sir. I already reinstal python 7 times. But getting same error again and > again. Connection is fine sir > > On Tue, 11 Feb, 2020, 9:58 PM Gregory Vaks, wrote: > >> I would try to open new terminal and see if

Re: installation of django

2020-02-11 Thread paarull shukla
Sir. I already reinstal python 7 times. But getting same error again and again. Connection is fine sir On Tue, 11 Feb, 2020, 9:58 PM Gregory Vaks, wrote: > I would try to open new terminal and see if you somehow already have > django. > > If not try that pip command again - it should work fine b

Re: installation of django

2020-02-11 Thread Gregory Vaks
I would try to open new terminal and see if you somehow already have django. If not try that pip command again - it should work fine but it may have to do with your internet connection...I would try to make sure you have a stable connection. On Tuesday, February 11, 2020 at 11:24:26 AM UTC-5,

Re: installation of django

2020-02-11 Thread Naveen Vadavalasa
Try reinstalling python and check if u have proper internet connection. On Tue, 11 Feb, 2020, 9:53 PM paarull shukla, wrote: > Please help me out. I m trying to install last 4 days back.. > > On Tue, 11 Feb, 2020, 9:51 PM paarull shukla, > wrote: > >> No. Not an error but getting collecting dja

Re: installation of django

2020-02-11 Thread paarull shukla
Please help me out. I m trying to install last 4 days back.. On Tue, 11 Feb, 2020, 9:51 PM paarull shukla, wrote: > No. Not an error but getting collecting django. After that installation > didn't start > > On Tue, 11 Feb, 2020, 9:49 PM Irfan Khan, wrote: > >> Are you getting any error messages

Re: installation of django

2020-02-11 Thread paarull shukla
No. Not an error but getting collecting django. After that installation didn't start On Tue, 11 Feb, 2020, 9:49 PM Irfan Khan, wrote: > Are you getting any error messages? > > On Tue, 11 Feb 2020 at 9:43 PM, paarull shukla < > shukla.paarull...@gmail.com> wrote: > >> heloo guys i m not able to i

Re: installation of django

2020-02-11 Thread Irfan Khan
Are you getting any error messages? On Tue, 11 Feb 2020 at 9:43 PM, paarull shukla wrote: > heloo guys i m not able to install django please help me it .i m facing > issue last 10 days . i m getting collecting django after tht installation > not started > > -- > You received this message because

Re: Installation of django

2019-08-22 Thread Virendra Tripathi
Did you check the versions/ Django2.0 and above supports only Python3. Virendra Tripathi Santa Clara, CA 415-910-4955 trip...@gmail.com On Tue, Aug 20, 2019 at 9:14 PM Amit Samanta wrote: > Hi, > > I want to install django in linux server for python 2.7.2. > i am not able install django > Pl

Re: Installation of django

2019-08-22 Thread Abu Yusuf
It's just an example to let him know. You can use any version of python3 here. I did use this because it defaults on ubuntu 16.04 and for me it's a better combination with python3.5 and django2.0 I did make a lot of applications with these. That's it. Cheers! On Thu, Aug 22, 2019 at 4:37 PM o1big

Re: Installation of django

2019-08-22 Thread אורי
I recommend Python 3.6 or 3.5. Some things are deprecated with Python 3.7. For example Django 1.11 runs DeprecationWarnings with Python 3.7. אורי u...@speedy.net On Thu, Aug 22, 2019 at 1:37 PM o1bigtenor wrote: > On Thu, Aug 22, 2019 at 3:35 AM Abu Yusuf > wrote: > > > > First of all: don't u

Re: Installation of django

2019-08-22 Thread o1bigtenor
On Thu, Aug 22, 2019 at 3:35 AM Abu Yusuf wrote: > > First of all: don't use python2. It will be dead after 4 months. > create a virtual environment: virtualenv -p /usr/bin/python3.5 venv > then activate it: source venv/bin/activate Greetings Curious as to why you wouldn't install python 3.7 at

Re: Installation of django

2019-08-22 Thread Abu Yusuf
First of all: don't use python2. It will be dead after 4 months. create a virtual environment: virtualenv -p /usr/bin/python3.5 venv then activate it: source venv/bin/activate Then run pip install django. That's it. On Wed, Aug 21, 2019 at 2:38 AM herve bineli wrote: > Please, provide the errors

Re: Installation of django

2019-08-20 Thread herve bineli
Please, provide the errors you get when trying: $ pip install --user django on your shell On Tue, Aug 20, 2019 at 4:44 PM Amit Samanta wrote: > Hi, > > I want to install django in linux server for python 2.7.2. > i am not able install django > Please help with the installation step for django

Re: Installation of django

2019-08-20 Thread Kasper Laudrup
On August 20, 2019 4:31:32 PM GMT+02:00, Amit Samanta wrote: >Hi, > >I want to install django in linux server for python 2.7.2. >i am not able install django >Please help with the installation step for django in linux. > > >Thanks and Regards >Amit Samanta > >-- >You received this message becaus

Installation of django

2019-08-20 Thread Amit Samanta
Hi, I want to install django in linux server for python 2.7.2. i am not able install django Please help with the installation step for django in linux. Thanks and Regards Amit Samanta -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubsc

Re: HELP : Installation of Django 1.6 in Windows

2013-06-30 Thread Othmane Abouelaecha
Thanks. It took me a few more steps but I finally achieved it, I had to change the path for the command prompt to recognize python. Thanks a lot !! Le dimanche 30 juin 2013 14:16:43 UTC, Othmane Abouelaecha a écrit : > > Hi !! I recently learned to program with python 3.2 > I have a difficulty c

Re: HELP : Installation of Django 1.6 in Windows

2013-06-30 Thread Mike Dewhirst
On 1/07/2013 12:16am, Othmane Abouelaecha wrote: Hi !! I recently learned to program with python 3.2 I have a difficulty concerning Django I want to install the latest version 1.6 that supports python 3.2 I only found a way to install in Linux but I'm running Windows 7 !! You should be able to

HELP : Installation of Django 1.6 in Windows

2013-06-30 Thread Othmane Abouelaecha
Hi !! I recently learned to program with python 3.2 I have a difficulty concerning Django I want to install the latest version 1.6 that supports python 3.2 I only found a way to install in Linux but I'm running Windows 7 !! Can anyone show me how ? And also if you have any book or tutorial about

Re: Installation of Django

2011-11-27 Thread william ratcliff
I've recommended: http://www.amazon.com/Beginning-Python-Professional-Magnus-Hetland/dp/159059519X To people with good success. Best, William On Sun, Nov 27, 2011 at 8:46 AM, JJ Zolper wrote: > Sounds Great! > > I started yesterday. > > JJ > > > On Nov 27, 2011, at 5:10 AM, Timothy Makobu >

Re: Installation of Django

2011-11-27 Thread JJ Zolper
Sounds Great! I started yesterday. JJ On Nov 27, 2011, at 5:10 AM, Timothy Makobu wrote: > Read that Python tutorial first, It will answer all your questions . You need > to read the WHOLE thing. > > http://docs.python.org/tutorial/index.html > > > > On Sun, Nov 27, 2011 at 3:52 AM, JJ Z

Re: Installation of Django

2011-11-27 Thread Timothy Makobu
Read that Python tutorial first, It will answer all your questions . You need to read the WHOLE thing. http://docs.python.org/tutorial/index.html On Sun, Nov 27, 2011 at 3:52 AM, JJ Zolper wrote: > Tim, > > Does our system include a Python Interpreter? > > " > > The interpreter’s line-editing

Re: Installation of Django

2011-11-26 Thread JJ Zolper
Tim, Does our system include a Python Interpreter? " The interpreter’s line-editing features usually aren’t very sophisticated. On Unix, whoever installed the interpreter may have enabled support for the GNU readline library, which adds more elaborate interactive editing and history features. Pe

Re: Installation of Django

2011-11-26 Thread JJ Zolper
So you feel that that documentation of Python is the best reference? I'm sure it is just wanted to ask. JJ On Sat, Nov 26, 2011 at 2:20 PM, Timothy Makobu wrote: > But first, all of this http://docs.python.org/tutorial/index.html > > > On Sat, Nov 26, 2011 at 10:19 PM, Timothy Makobu < > makobu

Re: Installation of Django

2011-11-26 Thread Timothy Makobu
But first, all of this http://docs.python.org/tutorial/index.html On Sat, Nov 26, 2011 at 10:19 PM, Timothy Makobu < makobu.mwambir...@gmail.com> wrote: > Nice. Now read ALL of this http://djangobook.com/en/2.0/ > > > On Sat, Nov 26, 2011 at 9:55 PM, JJ Zolper wrote: > >> Looks like I am in goo

Re: Installation of Django

2011-11-26 Thread Timothy Makobu
Nice. Now read ALL of this http://djangobook.com/en/2.0/ On Sat, Nov 26, 2011 at 9:55 PM, JJ Zolper wrote: > Looks like I am in good shape! > > Thanks so much man! > > http://madtrak.com/success.png > > JJ > > > On Sat, Nov 26, 2011 at 1:51 PM, JJ Zolper wrote: > >> Thanks! Yes sounds like som

Re: Installation of Django

2011-11-26 Thread JJ Zolper
Looks like I am in good shape! Thanks so much man! http://madtrak.com/success.png JJ On Sat, Nov 26, 2011 at 1:51 PM, JJ Zolper wrote: > Thanks! Yes sounds like something from my UNIX class. I have now added it. > > What will django-admin.py do for me? Oh are you just saying I can run it > fr

Re: Installation of Django

2011-11-26 Thread JJ Zolper
Thanks! Yes sounds like something from my UNIX class. I have now added it. What will django-admin.py do for me? Oh are you just saying I can run it from anywhere now? Any of the commands I want to work with python/django? JJ On Sat, Nov 26, 2011 at 12:56 AM, Timothy Makobu < makobu.mwambir...@gm

Re: Installation of Django

2011-11-25 Thread Timothy Makobu
Yes, iPython is installed now. But now you need to add C:\Python27\Scripts to your PATH variable, so you wont have to keep going there to run things. After you add it, you can run django-admin.py, easy_install, iPython ... from any directory in cmd.exe This link shows you how: http://geekswithblo

Re: Installation of Django

2011-11-25 Thread JJ Zolper
Tim, Okay I was able to get something to go there. At first I saw warnings so I wasn't sure but here are the images. http://madtrak.com/ipython1.png http://madtrak.com/ipython2.png Do you think I am in good shape with ipython? To perform the easy install of django would i execute: easy_instal

Re: Installation of Django

2011-11-25 Thread Timothy Makobu
Hi, you're welcome. Easy install is usually in C:\Python27\Scripts you can go there from within cmd.exe and run "easy_install.exe ipython" It should work. On Fri, Nov 25, 2011 at 7:56 PM, JJ Zolper wrote: > Tim, > > I had a confirmation from William that I installed Django but you said > iPyt

Re: Installation of Django

2011-11-25 Thread JJ Zolper
Tim, I had a confirmation from William that I installed Django but you said iPython would be helpful and since I don't remember much Python I was hoping to make that work. Thanks so much for taking the time to help me get started you're a life saver! : ) JJ On Nov 24, 11:56 pm, Timothy Makobu

Re: Installation of Django

2011-11-25 Thread JJ Zolper
Tim, I'm not sure if this has been established but I am in Windows 7. I realized that I was in the wrong prompt so I went to cmd.exe. I then tried both commands and returned errors: I also tried going to the directory where I had Django located and running the command as well as ipython but had

Re: Installation of Django

2011-11-25 Thread Tom Evans
On Fri, Nov 25, 2011 at 4:41 PM, JJ Zolper wrote: > I have worked with some of this stuff in my engineering classes but > would it really help to learn more Python first? Django is structured > with Python but I had the impression that that was in the backend that > I would never see that. I'm all

Re: Installation of Django

2011-11-25 Thread JJ Zolper
William, Oh I thought that's what was meant. I did that. Yes yes but I think I am all set up with Django from what you saw in the other discussion. I should google coding bat? I have worked with some of this stuff in my engineering classes but would it really help to learn more Python first? Dj

Re: Installation of Django

2011-11-25 Thread william ratcliff
You don't run easy_install from within python, but rather from the command line. So, in your start window, you want to use run to start "cmd.exe". This will open a window with a dos prompt. From there, type "easy_install django" followed by the enter key I think before starting django, you

Re: Installation of Django

2011-11-25 Thread JJ Zolper
Hello Tim, I was able to install Python 2.7 64-bit for Windows 7. I then downloaded the ez_setup.py and ran it. It installed the .egg file. I then attemped the Python command line: - easy_install django - easy_install ipython However I had no success installing the packages. I posted my error

Re: Installation of Django

2011-11-24 Thread JJ Zolper
JoeLinux, I read on the Django site that versions 2.3 to 2.6 where the appropiate versions of Python for the Django code. That's what I meant by agree. Does it work fine with 2.7 Python? JJ On Thu, Nov 24, 2011 at 11:57 AM, Daniel Roseman wrote: > On Thursday, 24 November 2011 16:55:06 UTC, JJ

Re: Installation of Django

2011-11-24 Thread Daniel Roseman
On Thursday, 24 November 2011 16:52:00 UTC, JJ Zolper wrote: > > Tom, > > 7zip works great. I am able to unzip the .tgz file and I have my .tar > file. Now it is on to installation of it. > > .tar is stil an archive. You need to extract that as well - 7zip should be able to do the job. -- DR.

Re: Installation of Django

2011-11-24 Thread Ivo Brodien
> windows users have extracted your command will look like this: ... > to execute the .tar file. as tom mentioned, you have to use 7zip two times. the tar file is another archive (like .zip, .gz ) which you have to decompress and then you have the django directory and you can go on with the

Re: Installation of Django

2011-11-24 Thread Daniel Roseman
On Thursday, 24 November 2011 16:55:06 UTC, JJ Zolper wrote: > > JoeLinux, > > Oh interesting. It seems the 64 bit version is sort of unclear. Any > help there? > > Would I be able to install my Python is well with a smaller command? I > am back at ground zero because I had to adjust the Python ver

Re: Installation of Django

2011-11-24 Thread Tom Evans
On Thu, Nov 24, 2011 at 4:52 PM, JJ Zolper wrote: > Tom, > > 7zip works great. I am able to unzip the .tgz file and I have my .tar > file. Now it is on to installation of it. > OK, you're still not getting it. You haven't extracted anything, you've gunzipped it. You now must use 7zip, or another

Re: Installation of Django

2011-11-24 Thread JJ Zolper
JoeLinux, Oh interesting. It seems the 64 bit version is sort of unclear. Any help there? Would I be able to install my Python is well with a smaller command? I am back at ground zero because I had to adjust the Python version back to 2.5 so Django would agree. I am interested just not sure how

Re: Installation of Django

2011-11-24 Thread JJ Zolper
Tom, 7zip works great. I am able to unzip the .tgz file and I have my .tar file. Now it is on to installation of it. Okay I have worked with UNIX before so I have some knowledge. I am studying to be a Computer Engineer at VT and have had some experience. My intuition tells me that if I even want

Re: Installation of Django

2011-11-24 Thread Joey Espinosa
If you install the "setuptools" package (http://goo.gl/UjFh), then all you have to do to install Django (or any other Python library) is this: easy_install django And it will handle the rest. Just a suggestion. -- Joey "JoeLinux" Espinosa Software Developer http://about.me/joelinux On Nov 24, 20

Re: Installation of Django

2011-11-24 Thread Tom Evans
On Thu, Nov 24, 2011 at 5:00 AM, JJ Zolper wrote: > Hello, > > I am new to Django! I was able to download and install: Python 2.7.2 > x86 64 on my Windows 7 64 bit machine. I think that is all that I will > need to execute the command line? > > I installed Python to C:/Python27 as the program inte

Installation of Django

2011-11-24 Thread JJ Zolper
Hello, I am new to Django! I was able to download and install: Python 2.7.2 x86 64 on my Windows 7 64 bit machine. I think that is all that I will need to execute the command line? I installed Python to C:/Python27 as the program intended. I then downloaded: Django-1.3.1.tar.gz file and was try

Re: Issues during installation of Django

2011-07-28 Thread Tom Evans
On Thu, Jul 28, 2011 at 10:06 AM, Dargoan wrote: > Hello, > > I'm new at Django. I have some issues installing Django. > After I download Django 1.3 as the website describes, when I launch > "setup.py install" in my command tool (on Windows XP), it does not run > the script, but instead Vim opens

Issues during installation of Django

2011-07-28 Thread Dargoan
Hello, I'm new at Django. I have some issues installing Django. After I download Django 1.3 as the website describes, when I launch "setup.py install" in my command tool (on Windows XP), it does not run the script, but instead Vim opens it. I'm totally new in python word either, so it may be a stu

Re: Installation of Django in my PC

2010-07-03 Thread ugur yoruk
On Sat, Jul 3, 2010 at 10:57 AM, Rama Naidu Ravipalli wrote: > I am barely a new user to this new software, i am trying to install in > my windows(vista) PC, and when i download Django software, i got it > in .gz file format that my PC does not support. Could anyone in this > group suggest a way

Re: Installation of Django in my PC

2010-07-03 Thread Daniel Roseman
On Jul 3, 8:57 am, Rama Naidu Ravipalli wrote: > I am barely a new user to this new software, i am trying to install in > my windows(vista) PC, and when i download Django software, i got it > in .gz file format that my PC does not support. Could anyone in this > group suggest a way to resolve this

Installation of Django in my PC

2010-07-03 Thread Rama Naidu Ravipalli
I am barely a new user to this new software, i am trying to install in my windows(vista) PC, and when i download Django software, i got it in .gz file format that my PC does not support. Could anyone in this group suggest a way to resolve this to istall Django in PC. Thank You Rama -- You receiv

Re: Queries regarding Installation of Django.

2008-11-12 Thread urukay
gt; supporting files of Django. > > Please Guide me in this regard for installing Django appliaction without > Internet Connection. > > > > Any Suggestion is Kindly Appreciated... > > > > > -- View this message in context: http://www.nabble.com/Queries-

Queries regarding Installation of Django.

2008-11-12 Thread sadeesh Arumugam
Hi friends, I'm a new bie to Django and i've a doubt in installing django in my Home pc. I've installed Linux Ubuntu in my PC. I want to install Django, do i need an internet connection. I didn't have Python, SVN or any other supporting files of Django. Please Guide me in this regard for install

Re: Installation of django in user account

2008-11-06 Thread Daniel Hepper
> On Wed, Nov 5, 2008 at 12:18 PM, Tim O'Toole <[EMAIL PROTECTED]> wrote: > > But I obviously cant do the following without root access > > > > ln -s `pwd`/django-trunk/django SITE-PACKAGES-DIR/django > > > > Whilst I can set the PYTHONPATH, I can't then write to PythonPath in > > the Apache conf

Re: Installation of django in user account

2008-11-06 Thread James Bennett
On Wed, Nov 5, 2008 at 12:18 PM, Tim O'Toole <[EMAIL PROTECTED]> wrote: > But I obviously cant do the following without root access > > ln -s `pwd`/django-trunk/django SITE-PACKAGES-DIR/django > > Whilst I can set the PYTHONPATH, I can't then write to PythonPath in > the Apache configuration file

Re: Installation of django in user account

2008-11-06 Thread [EMAIL PROTECTED]
No one? On Nov 5, 6:18 pm, "Tim O'Toole" <[EMAIL PROTECTED]> wrote: > Hi all, > > I was wondering how feasile it is it to install Django in a user > account without root access. I followed the instruction at: > > http://docs.djangoproject.com/en/dev/topics/install/#installing-devel... > > But I o

Installation of django in user account

2008-11-05 Thread Tim O'Toole
Hi all, I was wondering how feasile it is it to install Django in a user account without root access. I followed the instruction at: http://docs.djangoproject.com/en/dev/topics/install/#installing-development-version But I obviously cant do the following without root access ln -s `pwd`/django