Sorry for the very late reply... I've also needed a number of 3rd party modules for my application and what I did is to run web2py through a shell script... for example, in Windows...
set python_directory=c:\Python25 python ez_setup.py if errorlevel 1 goto setpath if errorlevel 0 goto check_python_modules :setpath set PATH=%PATH%;%python_directory%;%python_directory%/Scripts python ez_setup.py goto check_python_modules :check_python_modules easy_install "biopython==1.49" goto run_web2py :run_web2py python web2py.py --ip=localhost --port=8000 --password=admin works well.... Maurice On Mar 2, 12:45 am, Greg Fuller <[email protected]> wrote: > Web2Py is fantastic for packaging your application into a trial > version that can just be downloaded, unpacked and run - without > dependencies. No other framework I'm aware of can do this. > > The one snag is PIL. The applications I write usually require an > imaging library. I know that PIL is not pure python, and requires a > compile step because of the C code. But I have also been able to find > binary distributions for the platforms I've worked on - OS/X and > Windows. I would think there is also a Linux binary distribution > available. But, no problem there -- PIL has been available on the > Linux platforms I've deployed on (like webfaction). > > If I'm reading the PIL license correctly on pythonware.com, it can be > distributed. So, are there any technical difficulties or licensing > reasons why a PIL binaries should not be included in a distribution? > > Thanks, > > --greg-- --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" 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/web2py?hl=en -~----------~----~----~----~------~----~------~--~---

