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
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@instagram.com",
url="http://github.com/Instagram/python-instagram",
packages = find_packages(),
keywords= "instagram",
zip_safe = True)