Skip to content

Commit

Permalink
[FAB-5240] Install missing deps for developer VM
Browse files Browse the repository at this point in the history
scripts/install_behave.sh, which is executed in a VM to setup a
developer environment fails in installing cryptography because
some dependencies are missing in the environment.

This patch installs the missing dependencies.

Change-Id: I44c9972c4a256a632f90412f405f59a68182178f
Signed-off-by: Namiki Yuta <[email protected]>
  • Loading branch information
Namiki Yuta committed Jul 11, 2017
1 parent 4709b33 commit b55fc74
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/install_behave.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ apt-get install --yes libyaml-dev
apt-get install --yes python-setuptools
apt-get install --yes python-pip
apt-get install --yes build-essential
# required dependencies for cryptography, which is required by pyOpenSSL
# https://cryptography.io/en/stable/installation/#building-cryptography-on-linux
apt-get install --yes libssl-dev libffi-dev
pip install --upgrade pip
pip install behave
pip install nose
Expand Down

0 comments on commit b55fc74

Please sign in to comment.