blob: 00c5e8b8d568f78e7acca5fd4a452cc8529fd530 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# To install django-rest-framework...
#
# Requirements:
# python2.6
# virtualenv
hg clone https://tomchristie@bitbucket.org/tomchristie/django-rest-framework
cd django-rest-framework/
virtualenv --no-site-packages --distribute --python=python2.6 env
source ./env/bin/activate
pip install -r ./requirements.txt
python ./src/manage.py test
|