mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-10 19:56:59 +03:00
14 lines
344 B
Plaintext
14 lines
344 B
Plaintext
# 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
|
|
|