Re: python virtual environment

2013-12-05 Thread mulianto
Hi, You can use the new manage.py in django 1.6 doc , or you generate a new project, then copy it to your existing project. I have this error also when i try my django1.3 project in django1.6 in virtenv. Hope helps, Regards, Mulianto Blog : Http://muliantophang.blogspot.com Sent from my iPhon

Re: python virtual environment

2013-12-05 Thread Vibhu Rishi
so, for an existing project, how do i update the manage.py file ? create a new project in 1.6 and copy it over ? V. On Thu, Dec 5, 2013 at 9:58 PM, Timothy W. Cook wrote: > > > > On Thu, Dec 5, 2013 at 2:09 PM, Vibhu Rishi wrote: > >> I am getting the same error when I did an upgrade of Djang

Re: python virtual environment

2013-12-05 Thread Timothy W. Cook
On Thu, Dec 5, 2013 at 2:09 PM, Vibhu Rishi wrote: > I am getting the same error when I did an upgrade of Django to 1.6 . > Reverted back to 1.5 and it seems to work, but i am still searching for a > solution for this to work with 1.6 > > V. > > execute_manager was deprecated: https://docs.django

Re: python virtual environment

2013-12-05 Thread Vibhu Rishi
I am getting the same error when I did an upgrade of Django to 1.6 . Reverted back to 1.5 and it seems to work, but i am still searching for a solution for this to work with 1.6 V. On Fri, Nov 29, 2013 at 11:14 PM, tino wrote: > > > Hello > > I am trying to run a project that was setup in anot

Re: python virtual environment

2013-12-02 Thread Timothy W. Cook
On Fri, Nov 29, 2013 at 3:44 PM, tino wrote: > > > Hello > > I am trying to run a project that was setup in another server, but getting > the following error. I am using python 2.7, django, virtualenv. So I am > running the project inside a python virtual environment > > > (virtualenv)[web.srv1 da

Re: python virtual environment

2013-12-01 Thread Paul Whipp
Looks like you already have an active virtual environment but those instructions only install a few default things (like Django) into that environment. Therefore it sounds like your new virtual environment does not have all of the required python modules installed in it. There should be a requ

Re: python virtual environment

2013-11-30 Thread Avraham Serour
you need to activate the virtualenv before using: on windows: env\Scripts\activate on linux: source env/bin/activate On Fri, Nov 29, 2013 at 7:44 PM, tino wrote: > > > Hello > > I am trying to run a project that was setup in another server, but getting > the following error. I am using python 2