diff --git a/INSTALL.md b/INSTALL.md index 1c928779..535efc5d 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -5,7 +5,7 @@ Django-orchestra ships with a set of management commands for automating some of These commands are meant to be run within a **clean** Debian-like distribution, you should be specially careful while following this guide on a customized system. -Django-orchestra can be installed on any Linux system, however it is **strongly recommended** to chose the reference platform for your deployment (Debian 8.0 jessie and Python 3.4). +Django-orchestra can be installed on any Linux system, however it is **strongly recommended** to chose the reference platform for your deployment (Debian 8.0 Jessie and Python 3.4). 1. Create a system user for running Orchestra @@ -19,9 +19,7 @@ Django-orchestra can be installed on any Linux system, however it is **strongly 2. Install django-orchestra's source code ```bash sudo apt-get install python3-pip - sudo pip3 install django-orchestra==dev \ - --allow-external django-orchestra \ - --allow-unverified django-orchestra + sudo pip3 install http://git.io/django-orchestra-dev ``` 3. Install requirements diff --git a/README.md b/README.md index 50a60b96..92cce599 100644 --- a/README.md +++ b/README.md @@ -38,9 +38,7 @@ python3 -mvenv env-django-orchestra source env-django-orchestra/bin/activate # Install Orchestra and its dependencies -pip3 install django-orchestra==dev \ - --allow-external django-orchestra \ - --allow-unverified django-orchestra +pip3 install http://git.io/django-orchestra-dev # The only non-pip required dependency for runing pip3 install is python3-dev sudo apt-get install python3-dev pip3 install -r http://git.io/orchestra-requirements.txt diff --git a/scripts/containers/deploy.sh b/scripts/containers/deploy.sh index 7ad2cbf1..755e2cdb 100644 --- a/scripts/containers/deploy.sh +++ b/scripts/containers/deploy.sh @@ -70,9 +70,7 @@ function install_orchestra () { run sudo orchestra-admin install_requirements --testing else # Install from pip - run sudo pip3 install django-orchestra==dev \ - --allow-external django-orchestra \ - --allow-unverified django-orchestra + run sudo pip3 install http://git.io/django-orchestra-dev run sudo orchestra-admin install_requirements fi }