Browse code

Install ryu's requirements

Install packages ryu requires explicitly becuase they are
no longer covered by neutron's requirements.
(They used to be until very recently.)

Closes-Bug: #1323136
Change-Id: I6a603d95c053ac1deba59d8e479dbaf1a70293f3

YAMAMOTO Takashi authored on 2014/05/26 11:28:13
Showing 1 changed files
... ...
@@ -58,6 +58,7 @@ function install_ryu {
58 58
     if [[ "$_RYU_INSTALLED" == "False" ]]; then
59 59
         git_clone $RYU_REPO $RYU_DIR $RYU_BRANCH
60 60
         export PYTHONPATH=$RYU_DIR:$PYTHONPATH
61
+        pip_install $(cat $RYU_DIR/tools/pip-requires)
61 62
         _RYU_INSTALLED=True
62 63
     fi
63 64
 }