tags:

views:

157

answers:

2

I have already downloaded twill 0.9. Also, I have installed easy_install for python 2.6. Now I'm stuck with twill installation. Could you help me to settle the problem?

+2  A: 

Something like:

easy_install twill

It assumes you have easy_install in your PATH, which is the case on unix, but not on windows. On windows, the easy_install script can be found in C:\Python25\Scripts

David Cournapeau
+1  A: 

easiest way is to just unzip the twill and keep it somewhere in PYTHONPATH e.g. in your project and just import twill

else copy twill folder directly to D:\Python26\Lib\site-packages

Anurag Uniyal
I do not recommend this in general, since the installation of a package might have some other hooks than just copying a folder. e.g. it could run the testsuite, download some package data from the web, compile a C extension, etc.
bayer
yes I agree I specifically talked abt twill
Anurag Uniyal