Kalanamith
Kalanamith

Reputation: 20648

How to install Oauth2.0 for python in Ubuntu

Hi I have ownloaded simplegeo-python-oauth2-debian-1.5.211-0-ga83f4a2.tar.gz .I do not know how to install it for python in ubuntu. can anyone help?

Upvotes: 6

Views: 6138

Answers (2)

Vundemodalu Manjush
Vundemodalu Manjush

Reputation: 41

If you don't have python setup tools you will need the command below

$ sudo apt-get install python-setuptools

Then ,just build the setup in your python environment

$ python setup.py build

When you are done, Install.

$ sudo python setup.py install

Upvotes: 4

Blender
Blender

Reputation: 298176

Extract it and run:

python setup.py build
sudo python setup.py install

Upvotes: 12

Related Questions