python - Using Python3 with Pymongo in Eclipse Pydev on Ubuntu -
i trying run pydev pymongo on python3.3 interpreter. problem is, not able working :-/ first of installed eclipse pydev. afterwards tried installing pip download pymongo-module. problem is: installs pip default 2.7 version. read shouldn't change default system interpreter (running on lubuntu 13.04 32-bit) tried install second python3.3 , run in virtual environement, can't find detailed information on how use on specific problem. maybe there out there, uses similar configuration , can me out running (in simple way) ?
thanks in advance, eric
you can install packages specific version of python, need specify version of python want use command-line; e.g. python2.7
or python3
.
examples
python3 pip your_package
python3 easy_install your_package
.
Comments
Post a Comment