I want to install pymongo for the pypy3 2.1 Beta 1. I'm using ubuntu. The installation instruction says I should go through the following steps:
(1) $ curl -O http://python-distribute.org/distribute_setup.py
(2) $ curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
(3) $ ./pypy-2.1/bin/pypy distribute_setup.py
(4) $ ./pypy-2.1/bin/pypy get-pip.py
(5) $ ./pypy-2.1/bin/pip install pygments # for example
The first three steps are all OK (at least I didn't find any error messages). But when I execute step (4), there is an error:
An error occurred while trying to run get-pip.py. Make sure you have setuptools or distribute installed
What's the matter? How can I proceed to install pymongo in pypy3 2.1 Beta 1? In addition, since I'm using python3, I installed the pymongo library designed particularly for python3 using python3-pip (pip-3.3). Do I need to modify the above installation steps accordingly to accommodate pymongo for python3? Thank you.