Browse Source

Correct the order of operations

install/files/python_requirements.txt does not exist while the sources are not downloaded. The installation of python libs thus happens after cloning the repo.
Duclot William 8 years ago
parent
commit
ec99ae2db0
1 changed files with 7 additions and 7 deletions
  1. 7 7
      Docs/dev_env_install.md

+ 7 - 7
Docs/dev_env_install.md

@@ -17,13 +17,6 @@ On Ubuntu distribution :
 sudo apt-get install python-pip python-dev libsmpeg0 libttspico-utils libsmpeg0 flac dialog libffi-dev portaudio19-dev build-essential libssl-dev libffi-dev sox libatlas3-base mplayer
 ```
 
-### Python lib
-
-Install libs
-```
-sudo pip install -r install/files/python_requirements.txt
-```
-
 ### Test your env
 Run the following command to capture audio from your microphone
 ```
@@ -37,8 +30,15 @@ play test.wav
 
 ## Installation
 
+### Get the sources
 Clone the project
 ```
 git clone https://github.com/kalliope-project/kalliope.git
 ```
 
+### Python lib
+
+Install libs
+```
+sudo pip install -r install/files/python_requirements.txt
+```