On 15 March 2013 06:51, <[email protected]> wrote: > Sorry can't find a message from you in this newsgroup with any virtualinv > instructions. > > Or do you mean this link?: > https://pypi.python.org/pypi/virtualenv > > This text _is_ detailed with regard to virtualenv, but the combination with > apache/wsgi on debian would pose more questions. > > Apart from my question, it would really make sense to have Django install > instructions for a debian/ubuntu server in the django docs. > This would lower the entrance hurdles to check out Django for many website > admins.
I disagree - the docs are very well written and work across platform. There's no need for .deb specialisation. Virtualenv is dead simple to use and incredibly helpful. The easiest way to install/use it is: $ pip install virtualenvwrapper $ mkvirtualenv project $ workon project All pip installs from within that virtualenv will then be localised. $ pip install Django $ pip install South $ pip install MySQL-python #(if you are using mysql) It will all be contained within your virtualenv. To conf with Apache, it's just a matter of pointing the server to the wsgi file within your new project. Unless there was a specific error message that was the problem, I don't understand how the brand of linux you are using could affect the deployment. cheers L. -- The new creativity is pointing, not making. Likewise, in the future, the best writers will be the best information managers. http://www.theawl.com/2013/02/an-interview-with-avant-garde-poet-kenneth-goldsmith -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.

