Re: Installing Django from GIT/Subversion - package dependency in virtual environment

2012-02-21 Thread shacker
Even easier, just pip install django or in requirements.txt, simply: Django To upgrade later: pip install --upgrade django ./s -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google

Re: Installing Django from GIT/Subversion - package dependency in virtual environment

2012-02-20 Thread Denis Darii
Yes Mateusz, you understood right. On Mon, Feb 20, 2012 at 4:07 PM, Mateusz Marzantowicz < mmarzantow...@gmail.com> wrote: > Yes, it works! > > Although I was previously installing Django according to docs at > https://docs.djangoproject.com/en/1.3/topics/install/#installing-development-version,

Re: Installing Django from GIT/Subversion - package dependency in virtual environment

2012-02-20 Thread Mateusz Marzantowicz
Yes, it works! Although I was previously installing Django according to docs at https://docs.djangoproject.com/en/1.3/topics/install/#installing-development-version, your method works perfectly so far. I understand that keep in sync with trunk/master is as easy as invoking git pull (svn up) and t

Re: Installing Django from GIT/Subversion - package dependency in virtual environment

2012-02-20 Thread Denis Darii
Do you mean django-trunk installation? If so, I use this in my requirements.txt: -e svn+http://code.djangoproject.com/svn/django/trunk/#egg=django-trunk or directly with pip: $ pip install -e svn+ http://code.djangoproject.com/svn/django/trunk/#egg=django-trunk Hope it helps. On Mon, Feb 20,

Installing Django from GIT/Subversion - package dependency in virtual environment

2012-02-20 Thread Mateusz Marzantowicz
Hello, I'm having a problem with managing Django installation which was done from git repository (might be svn as well) in clean virtual environment. The problem is that when I install some other package via pip which has a Django as a dependency, it doesn't find my django installation and then do