I think this is what i did:
Download and install python3 fro
python.org website. This creates a python3 in /usr/local/bin/.
Download the distribute module from
pypi.orgCreate a file in your home directory called .pydistutils.cfg (note the period at the beginning of the filename).
add the following two lines to it.
[install]
user=true
These lines will cause python modules to be installed for your user
only when installed with easy-install or pip, and you won't be required to use sudo. Modules will be installed
in Library/Python/ within your home directory.
unpack distribute and cd into the directory
python3 setup.py build
python3 setup.py install
I think this should get you the easy_install command Library/Python/3.3/bin/easy_install.
then:
~/Library/Python/3.3/bin/easy_install pip
~/Library/Python/3.3/bin/pip install selenium
~/Library/Python/3.3/bin/pip install django
I don't remember why I installed distribute first, except that the distribute module may be needed by pip. You can add the path to pip to your path variable or create aliases/links to make using it easier.