Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

where can i download pymongo in 64bit ubuntu/linux

I need to install pymongo in 64bit ubuntu/linux . but the downloads is there only for windows and mac. and this is a production setup.

can anyone knows where to download.

like image 252
skoovill Avatar asked Feb 09 '12 15:02

skoovill


People also ask

Does PyMongo install MongoDB?

MongoDB is a popular NoSQL database management system good for the storage of unstructured data. You can Install MongoDB Python on Windows using the PyMongo driver.

How do I check my PyMongo version?

Hi, There are several ways to check the installed module version. The best approach is to confirm using the python runtime, which will load pymongo based on your current environment variables. Alternatively you can check what version pip thinks is installed.


1 Answers

Here's the short answer (tested on ubuntu 12.10, quantal quetzal, 64-bit):

sudo apt-get install python-pip
sudo apt-get install build-essential python-dev
pip install pymongo
like image 139
gabe Avatar answered Nov 11 '22 14:11

gabe