Just a note- while trying to install conda in Python 3.4 or 3.5, I'd get:
Downloading conda-4.0.5.tar.gz (125kB)
100% ... 133kB 1.7MB/s
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-822jhojp/conda/setup.py", line 30, in <module>
import auxlib # a build-time dependency only
ImportError: No module named 'auxlib'
The fix is easy and probably obvious to many (but not me); just pip install auxlib first. I'm just sharing in case someone else bumps into this-