[EMAIL PROTECTED] wrote: > Follow up on the last posting: > > Reinstalling setup tools cleared the load_entry_point error: > $ python ez_setup.py -U setuptools > > Subsequent upgrade of TG with the --delete-conflicting fails, too > $ python ez_setup.py -U TurboGears -f http://turbogears.org/download > --delete-conflicting
You need to put TurboGears last on the command line; all of the options have to appear *before* the first package name. You also want a trailing / on 'download', I.e: python ez_setup.py -U -f http://turbogears.org/download/ --delete-conflicting TurboGears Or: python ez_setup.py -UDf http://turbogears.org/download/ TurboGears (-D is short for --delete-conflicting, and you can combine multiple no-argument single-letter options.)

