> when I try to install it manually I get the same error : easy_install - > U tgext.admin > error: docs/HISTORY.txt: No such file or directory
I just worked around the error on my system. I used wget to download the packages directly, untarred them, and edited the setup.py to stop looking for docs/HISTORY.txt, then did a manual python setup.py install. You need to do this for both tgext.admin-03 and tgext.crud-0.3 downloads: wget http://pypi.python.org/packages/source/t/tgext.admin/tgext.admin-0.3.tar.gz wget http://pypi.python.org/packages/source/t/tgext.crud/tgext.crud-0.3.tar.gz diff: @@ -6,8 +6,7 @@ setup(name='tgext.crud', version=version, description="Crud Controller Extension for TG2", - long_description=open("README.txt").read() + "\n" + - open(os.path.join("docs", "HISTORY.txt")).read (), + long_description=open("README.txt").read() + "\n", # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Programming Language :: Python", -Jim --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

