I want to update the django on my vagrant box (and have no need or desire to use virtualenv)

will a simple yum install django suffice?

link|improve this question
I am not sure whether this applies to your installation, but this states to remove the old version first. See: docs.djangoproject.com/en/dev/topics/install/… – Jingo Feb 1 at 17:12
feedback

1 Answer

up vote 1 down vote accepted

why dont u use pip to install python packages?

if you dont have pip in your vagrant machine you can just add this line to your recipes file:

require_recipe "python::pip"

After having pip you can just run

pip install Django

To get the latest version or you can also specify a version:

pip install Django==1.3.1

Just one more think, I have a django_blank project in github using django and vagrant ! if you need some recipe fell free to get it from there: https://github.com/arthurnn/django_blank/blob/master/cookbooks/vagrant_main/recipes/default.rb

link|improve this answer
that worked perfectly - thanks - was typing "pip install django --upgrade" will take a look at you Git. – Seb Ashton Feb 2 at 8:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.