I have the following Python distributions installed on my Windows computer:
I'm not sure why you need so many different Pythons, but for Anaconda, you should use conda.
conda install pytz
will install pytz
into your Anaconda Python.
If all you are aiming to do is to have both Python 2 and Python 3 you can do this with conda.
conda create -n py27 python=2.7 anaconda
will create a conda environment (similar to a virtualenv but more powerful) with the Python 2.7 version of Anaconda. You can then activate this with
activate py27
See http://continuum.io/blog/anaconda-python-3.
You can also use pip
with Anaconda, but using conda is recommended unless the package you need is not available through conda.