Reputation: 32316
I tried to install big query on ubuntu and I got the following error:
Installed /usr/local/lib/python2.6/dist-packages/oauth2-1.5.211-py2.6.egg
error: Installed distribution httplib2 0.6.0 conflicts with requirement httplib2>=0.7.4
How do I correct this issue?
Update:
I am trying to install the google BigQuery tools package found here...
http://code.google.com/p/google-bigquery-tools/downloads/list
Upvotes: 0
Views: 1428
Reputation: 6625
If you're using easy_install
, you could also try easy_install -U httplib2
to upgrade the version of httplib2
you're using.
Upvotes: 3
Reputation: 7054
You will need to get your hands on a more up to date version of httplib2. You may need to build a newer version from source.
Try running sudo apt-get update && sudo apt-get upgrade
Upvotes: 1