Install pip and Django. I thought it would be a lot of steps and a lot of sentences, but it was very easy.
Environment: Mac OS X 10.9.4 (Mavericks) Assumption: homebrew installed & Python installed (Python installation procedure)
pip seems to be a Python package management system.
$ curl -kL https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python
You can now install it. However, it was already installed in this environment. It seems that it was installed when Python was installed with pyenv. (Note on Python development environment on Mac OS X)
Very easy
pip install Django == 1.6.5
Recommended Posts