Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread Stephen Anto
Hi, Try like this if you are using ubuntu ~$ python Python 2.7.3 (default, Apr 20 2012, 22:44:07) [GCC 4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import django >>> django.get_version() '1.3.1' or >>> django.VERSION (1, 3, 1, 'final', 0) >>> Not

Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread Brad Pitcher
Glad to here you got it working, and please let us know if you have any other questions. On Sun, Sep 9, 2012 at 5:52 PM, Shayan Afridi wrote: > It works! Thank you all so much. It feels great to know that there is a > very responsive and helpful support system for

Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread Shayan Afridi
It works! Thank you all so much. It feels great to know that there is a very responsive and helpful support system for django users. Thanks again! -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread Shayan Afridi
Okay, I just realized I don't/didn't need to type sudo in. Got 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

Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread Shayan Afridi
@Dennis Lee Bieber, I jumped back to my Mac, sorry- I am being a real bother but I appreciate the help insanely. Hopefully the help will be of aid in the Mac process, too. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread Shayan Afridi
Hi all, I'm sorry- my last django question was all over the place. I hope it is reasonable to you if I recap. Thank you! Hi, and thanks for reading. Eventually, I want to be able to complete this project: https://docs.djangoproject.com/en/dev/intro/tutorial01/# (Writing your first Django

Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread Larry Martell
On Sun, Sep 9, 2012 at 3:41 PM, Shayan Afridi wrote: > Interesting. I'm doing it on my PC now, and still getting the same problem. > > Then I saw your email: > > Here's what I get when I print sys.path. (django's not there) > print sys.path > ['',

Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread Brad Pitcher
I can't speak authoritatively on this, since that's not how it installs in Linux, but in my understanding the contents of the django.pth file should be the directory django has been installed to. Check the contents of that file to see if everything is in order. An alternative to this is to update

Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread Shayan Afridi
There is a django.pth there and a README -- 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

Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread Brad Pitcher
The question is, is django inside one of those directories? It should probably be installed to C:\Python27\lib\site-packages so there would be a C:\Python27\lib\site-packages\django directory. Is it there? On Sun, Sep 9, 2012 at 3:41 PM, Shayan Afridi wrote: >

Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread Shayan Afridi
Interesting. I'm doing it on my PC now, and still getting the same problem. Then I saw your email: Here's what I get when I print sys.path. (django's not there) >>> print sys.path ['', 'C:\\Windows\\system32\\python27.zip', 'C:\\Python27\\DLLs', 'C:\\Python27\\lib',

Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread Larry Martell
On Sun, Sep 9, 2012 at 2:18 PM, djangohelp wrote: > I install it and then in the terminal when I type python -c "import django; > print(django.get_version())" > > > it says > > Traceback (most recent call last): > File "", line 1, in > ImportError: No module named

Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread Shayan Afridi
Hey- I went here. https://docs.djangoproject.com/en/dev/intro/tutorial01/ And downloaded this one: https://www.djangoproject.com/download/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread tOlorun
hi how are you doing it ...? have gone to the djangoproject website ... ? On Sep 9, 2012 7:19 PM, "djangohelp" wrote: > I install it and then in the terminal when I type python -c "import > django; print(django.get_version())" > > > it says > > Traceback (most

I can't install django on my mac. I'm not sure why. Details inside.

2012-09-09 Thread djangohelp
I install it and then in the terminal when I type python -c "import django; print(django.get_version())" it says Traceback (most recent call last): File "", line 1, in ImportError: No module named django shayan-afridis-imac:~ prankster284$ Please let me know what I'm doing wrong. Thanks