question about install pymongo

I have installed the PyPy3 2.1 Beta 1 on my ubuntu. When I tried to import pymongo, a third party driver for mongodb, I was told "ImportError: No module named pymongo". So my questions are: (1)Does it mean I have to install pymongo again for pypy3 2.1 Beta 1? (2)If yes, http://doc.pypy.org/en/latest/getting-started.html#installing-pypy says: If you want to install 3rd party libraries, the most convenient way is to install distribute and pip: $ curl -O http://python-distribute.org/distribute_setup.py $ curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py $ ./pypy-2.1/bin/pypy distribute_setup.py $ ./pypy-2.1/bin/pypy get-pip.py $ ./pypy-2.1/bin/pip install pygments # for example But, These instructions seems for pypy-2.1, the stable release for python 2.x only, not for PyPy3 which is used for python 3. Are the steps for installing 3rd party libraries for PyPy3 similar to the above ones? (3)If yes, I don't have curl installed in my ubuntu, do I have to install it? (4)I used "pip-3.3" which is particularly designed for python3 to install the pymongo instead of "pip". Is there any corresponding counterpart of pip-3.3 for PyPy3 2.1 Beta 1? If there is any, how to get it? Thank you.

Just now I tried to execute the steps in http://doc.pypy.org/en/latest/ getting-started.html#installing-pypy. curl -O http://python-distribute.org/distribute_setup.py is OK, curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py is OK, ./pypy-2.1/bin/pypy distribute_setup.py is OK (I have a different directory for PyPy3 2.1 Beta 1, but the executable pypy is still in the bin directory and I do all the steps in the bin directory). But ./pypy-2.1/bin/pypy get-pip.py gives error : "An error occurred while trying to run get- pip.py, Make sure you have setuptools or distribute installed." I checked the bin directory, distribute_setup.py and get-pip.py is in it. What's the matter and how can I install pymongo in the PyPy3 2.1 Beta 1? On Sat, Aug 24, 2013 at 10:06 PM, Leonardo Santagada <santagada@gmail.com>wrote:

Just now I tried to execute the steps in http://doc.pypy.org/en/latest/ getting-started.html#installing-pypy. curl -O http://python-distribute.org/distribute_setup.py is OK, curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py is OK, ./pypy-2.1/bin/pypy distribute_setup.py is OK (I have a different directory for PyPy3 2.1 Beta 1, but the executable pypy is still in the bin directory and I do all the steps in the bin directory). But ./pypy-2.1/bin/pypy get-pip.py gives error : "An error occurred while trying to run get- pip.py, Make sure you have setuptools or distribute installed." I checked the bin directory, distribute_setup.py and get-pip.py is in it. What's the matter and how can I install pymongo in the PyPy3 2.1 Beta 1? On Sat, Aug 24, 2013 at 10:06 PM, Leonardo Santagada <santagada@gmail.com>wrote:
participants (2)
-
Heng Zhou
-
Leonardo Santagada