failure to import pymongo ubuntu

2019-01-26 11:57发布

I am currently runnning Ubuntu 12.04 with mongodb 2.2 and pymongo version 2.3. I am attempting to gather some information using Twitters API and I am getting an error when attempting to import mymongo. Here is what I have:

import pycurl, json
import pymongo


STREAM_URL = "https://stream.twitter.com/1/statuses/filter.json"
WORDS = "track=#obama"
USER = "myuser"
PASS = "mypass"

ImportError: No module named pymongo Any ideas?

4条回答
太酷不给撩
2楼-- · 2019-01-26 12:33

I was having the same issue and I installed it manually like this:

$ wget http://pypi.python.org/packages/source/p/pymongo/pymongo-2.3.tar.gz
$ tar xzf pymongo-2.3.tar.gz
$ cd pymongo-2.3
$ python setup.py install

Works for me. Good luck.

查看更多
手持菜刀,她持情操
3楼-- · 2019-01-26 12:36

I had the same problem. Pymongo conflicts with the bson package. This worked for me:

sudo pip uninstall pymongo
sudo pip uninstall bson
sudo apt-get remove python-bson
sudo apt-get remove python-gridfs    # not sure if it's necessary
sudo pip install pymongo -U
查看更多
倾城 Initia
4楼-- · 2019-01-26 12:39

I was having same issue. Easy way to do is install pip and install pymongo.

wget --no-check-certificate https://bootstrap.pypa.io/get-pip.py python get-pip.py python -m pip install pymongo

查看更多
倾城 Initia
5楼-- · 2019-01-26 12:48

cd /tmp/

wget --no-check-certificate https://github.com/mongodb/mongo-python-driver/archive/master.zip

unzip master.zip

cd mongo-python-driver-master/

python setup.py install

查看更多
登录 后发表回答