Re: [web2py] Re: Requirements per application

2014-08-29 Thread Massimo Di Pierro
I am not sure I fully understand. Both in web2py and Django you create multiple instances of the server (either by replicating the code or by simply starting it twice) and you can have them serve different applications. If you do you have them see different virtualenvs. In web2py you also have

Re: [web2py] Re: Requirements per application

2014-08-29 Thread Kuba Kozłowicz
Well actually you are right. I just thought about web2py as a big hub of applications, where each application shares the very same interpreter, which I do not like because of aforementioned reasons. In django I'd simply create another instance to solve that problem and include a URL to it some

Re: [web2py] Re: Requirements per application

2014-08-25 Thread Derek
That's not possible for django or any other python webapp. where did you get this idea? On Monday, August 25, 2014 1:12:12 AM UTC-7, Kuba Kozłowicz wrote: > > Yea, well with different instances you can do it, but I asked if that is > possible for one instance, which contains multiple apps. > > S

Re: [web2py] Re: Requirements per application

2014-08-25 Thread Kuba Kozłowicz
Yea, well with different instances you can do it, but I asked if that is possible for one instance, which contains multiple apps. So it's impossible. W dniu niedziela, 24 sierpnia 2014 12:13:57 UTC+2 użytkownik Michele Comitini napisał: > > I think you just need to make some python virtualenvs

Re: [web2py] Re: Requirements per application

2014-08-24 Thread Michele Comitini
I think you just need to make some python virtualenvs for each set of modules and then run *different* instances of web2py. You can do that easily and in many different ways. 2014-08-22 12:21 GMT+02:00 Kuba Kozłowicz : > I know I can put app-specific modules into application//modules. This > is

[web2py] Re: Requirements per application

2014-08-22 Thread Kuba Kozłowicz
I know I can put app-specific modules into application//modules. This is not what I meant. I mean I want a different python interpreter per each app - is that possible? Because one of them will have installed library in version X and the other one will have installed the same libary, but in ver

[web2py] Re: Requirements per application

2014-08-20 Thread Massimo Di Pierro
Yes. you put them in application//modules/ and then each app will import from there. Some modules break when you do this. If it happens bring it up here and we can tell you how to fox them. On Monday, 18 August 2014 03:45:34 UTC-5, Kuba Kozłowicz wrote: > > I would like to know if it is possible