bytejunkie
bytejunkie

Reputation: 1033

is it possible to install django beta with pip?

I've tried a few variants of

pip install django==1.4b1 -E canvas

in an attempt to install the beta the easy way.

is there a way to do it?

or do i just have to swallow the pain of downloading and unzipping.

Upvotes: 11

Views: 3921

Answers (2)

Chris Pratt
Chris Pratt

Reputation: 239340

pip install svn+http://code.djangoproject.com/svn/django/trunk/#egg=django

github repository:

pip install git+git://github.com/django/[email protected]

Upvotes: 17

j_syk
j_syk

Reputation: 6621

Pip docs: Installing from a VCS

pip install -e svn+http://code.djangoproject.com/svn/django/trunk/#egg=Django

Upvotes: 3

Related Questions