shantanuo
shantanuo

Reputation: 32316

Installing BigQuery

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

Answers (2)

Craig Citro
Craig Citro

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

Thom Wiggers
Thom Wiggers

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

Related Questions