Running Python command - Error

Jim binarynut at comcast.net
Mon May 13 21:37:08 UTC 2013


Fedora 18

Where do I find the setuptools module ?  For error below


$python setup.py install

Traceback (most recent call last):
   File "setup.py", line 2, in <module>
     from setuptools import setup, find_packages
ImportError: No module named setuptools


Below is the setup.py

#!/usr/bin/env python
from setuptools import setup, find_packages

setup(name="python-instagram",
       version="0.8.0",
       description="Instagram API client",
       license="MIT",
       install_requires=["simplejson","httplib2"],
       author="Instagram, Inc",
       author_email="apidevelopers at instagram.com",
       url="http://github.com/Instagram/python-instagram",
       packages = find_packages(),
       keywords= "instagram",
       zip_safe = True)



More information about the users mailing list