Importerror: No Module Named 'setuptools'
I'm new to python and have just installed the Python 3, I'm new to Python and I'm facing difficulties in importing a new library. I'm trying to import tweepy-master library into py
Solution 1:
It seems that you should use Setuptools, i.e. Distribute is deprecated:
Distribute is a deprecated fork of the Setuptools project. Since the Setuptools 0.7 release, Setuptools and Distribute have merged and Distribute is no longer being maintained. All ongoing effort should reference the Setuptools project and the Setuptools documentation.
Obsolete
You should use distribute - a setuptools fork which "offers Python 3 support".
Installation instructions (according to documentation):
- download python-distribute.org/distribute_setup.py (link is broken, obsolete information)
- run it:
python distribute_setup.py
It is recommended to install pip too: easy_install pip
Post a Comment for "Importerror: No Module Named 'setuptools'"