Ich hatte das gleiche Problem. Pymongo steht in Konflikt mit dem bson
Paket. Das hat bei mir funktioniert:
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