I started learning DJango for the first time. I have some amount of basic knowledge of python but DJango is first for me. I started with the documentation page of django, bu
Assuming you're using linux, you should be able to get the Python setuptools from your distribution's repositories. Once installed, type
sudo easy_install pip # installs pip
sudo pip install -U pip # upgrades pip to most recent version
From there, you can continue to follow the tutorial.
If you're not using linux, download Python setuptools from PyPI. Python setuptools [PyPI]
For OS X, the above should still work in the terminal. On windows, you may have to do the above from an elevated command prompt (not sure), but without the sudo command at the beginning.