1👍
INSTALL
is a set of English-language instructions describing how to install Django. It is not an installer. Rather than trying to execute it with a shell, read them and follow the directions inside.
As for why get-pip.py
failed, you had a Python shell open and gave the Python prompt the filename get-pip.py
. But the Python REPL doesn’t take filenames; it takes Python expressions. It thought you were trying to retrieve the variable get
and subtract the attribute py
of the pip
object. But neither get
nor pip
existed, so you got a NameError
.
If you want to install pip, use a normal shell (like, say, Bash) and then run python get-pip.py
.
- [Answer]-Django Celery email, celery is not working
- [Answer]-Django 1.6 adding rows o excel sheet
- [Answer]-Django project to Azure Cloud Services without Visual Studio
0👍
i figured it out. i tried using the .zip file rather than the .tar.gz file.
First time install Django on Mac OSX Mountain Lion
thanks for your help guys, it sucks being a noob.
- [Answer]-What is the appropriate way to set up a form and view in Django to accommodate both creating and updating a model
- [Answer]-Display & Add Grandchildren in Django Admin
- [Answer]-Error in Django Template Blocks
- [Answer]-Django Nested ManyToMany QuerySet