Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install Oauth2.0 for python in Ubuntu

Tags:

python

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?

like image 290
Gayan Kalanamith Avatar asked Jan 23 '12 05:01

Gayan Kalanamith


2 Answers

Extract it and run:

python setup.py build
sudo python setup.py install
like image 142
Blender Avatar answered Nov 17 '22 22:11

Blender


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
like image 4
Vundemodalu Manjush Avatar answered Nov 17 '22 23:11

Vundemodalu Manjush