Re: Dreamhost Virtualenv Question

2011-07-07 Thread Andre Terra
A few more important things to note: Your projects shouldn't live within your virtualenv directory. You can create projects and virtualenvs with the same name (I often do), but it's not mandatory. So here's an example setup ~/virtual/djangotrunk ~/virtual/socialwebzone ~/projects/socialwebzone

Re: Dreamhost Virtualenv Question

2011-07-06 Thread DrBloodmoney
On Wed, Jul 6, 2011 at 3:31 AM, i...@webbricks.co.uk wrote: > oh yeah > http://www.saltycrane.com/blog/2009/05/notes-using-pip-and-virtualenv-django/ > > that page is my goto reference on building a virtualenv, you might > have already found it, but if not... > > On Jul 5, 10:28 pm, Jeremy wrote:

Re: Dreamhost Virtualenv Question

2011-07-06 Thread i...@webbricks.co.uk
Jeremy, there's a concept you need to understand to progress here. its on that took me while to properly understand, but which i think is natural to someone in a foss development role, which i hadn't previously been. the python path is the all important config item. it defines where python look s

Re: Dreamhost Virtualenv Question

2011-07-06 Thread i...@webbricks.co.uk
oh yeah http://www.saltycrane.com/blog/2009/05/notes-using-pip-and-virtualenv-django/ that page is my goto reference on building a virtualenv, you might have already found it, but if not... On Jul 5, 10:28 pm, Jeremy wrote: > AHHH, that makes a little more sense.  I'm trying to install apps from

Re: Dreamhost Virtualenv Question

2011-07-05 Thread Jeremy
AHHH, that makes a little more sense. I'm trying to install apps from Github. Things like Pinax, and different individual blogging apps so that I can "plug" them into one Django project to give it multiple bits of social functionality. Obviously I'm having a lot of trouble (some of it being that

Re: Dreamhost Virtualenv Question

2011-07-05 Thread bruno desthuilliers
I can only second Shawn here. FWIW, virtualenv is just a way to have different (more or less) isolated *Python* environments on a same system, and has no notion of a "Django project". -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to th

Re: Dreamhost Virtualenv Question

2011-07-05 Thread Shawn Milochik
On Tue, Jul 5, 2011 at 2:10 PM, Jeremy wrote: > Hello, I'm completely new to Django and the concept of virtualenv. > I'm trying to set up a web site and add in third party applications > such as the zinnia blogging app, but having some issues.  I believe > that I've set up the virtualenv correctly

Re: Dreamhost Virtualenv Question

2011-07-05 Thread Oscar Carballal
Take a look to this article i wrote a couple of months ago blog.oscarcp.com/?p=167 its about installing django 1.3 on dreamhost, it may help you Enviado desde mi HTC El 05/07/2011 20:13, "Jeremy" escribió: > Hello, I'm completely new to Django and the concept of virtualenv. > I'm trying to set up