DCA wrote: > C:\Python24>ez_setup.py -f > http://www.turbogears.org/download/index.html TurboGe > ars > Reading http://www.turbogears.org/download/index.html > Searching for TurboGears > Reading http://www.python.org/pypi/TurboGears/ > No local packages or download links found for TurboGears > error: Could not find distribution for Requirement.parse('TurboGears')
Are you behind a firewall, perhaps? The overall pattern of errors in this thread seems consistent with a firewall returning a login page or other HTML page in place of what EasyInstall is trying to download, thereby preventing EasyInstall from finding the download links or downloading valid .egg files. If that's the case, you'll need to either find a way to bypass the firewall (e.g. using http://ntlmaps.sf.net/ ), or else manually download all the .egg files listed on the download page to a temporary directory, and then run easy_install -f dldir TurboGears where 'dldir' is the directory you downloaded the .egg files to.

