Merge branch 'master' of github.com:glic3rinu/django-orchestra
This commit is contained in:
commit
a3211ef188
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue