[web2py] Re: Pillow not imported by web2py-win

2022-05-06 Thread Massimo Di Pierro
can you try "pip install pillow" instead of putting it in C:\Users\Dave\web2py_win\web2py_win_2.21.1_py27\web2py\site-packages Not all packages like to be there and it can create problems. On Wednesday, 20 April 2022 at 00:26:48 UTC-7 snide...@gmail.com wrote: > I want to do some simple image

[web2py] Re: deploy web2py with gunicorn, Nginx y HTTPS

2022-05-06 Thread Massimo Di Pierro
Gunicorn creates processes, not threads so if you have multiple CPUs is takes advantage of them. Threads in python do not work as well because of the GIL and some times make things worse. On Sunday, 17 April 2022 at 16:29:34 UTC-7 xgp.l...@gmail.com wrote: > Hi all, > > What are the advantages