diff options
author | Ole Troan <ot@cisco.com> | 2016-04-13 13:51:04 +0200 |
---|---|---|
committer | C.J. Collier <cjcollier@linuxfoundation.org> | 2016-04-20 18:59:08 +0000 |
commit | 494f22e4be62de08de2f5aa542e6ba06d4d41b36 (patch) | |
tree | 87b1d99b1c8ab9268ff2c65b7547496bc2fb0426 /vagrant/basebuild | |
parent | 19093d46d0222eee457dedb55505d2ad42820cfa (diff) |
Added python3-dev dependency to support Python API bindings.
Change-Id: Ie7eb3d22e81fe718d688fbd1f5ffebb282e06e17
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'vagrant/basebuild')
-rw-r--r-- | vagrant/basebuild/bootstrap.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vagrant/basebuild/bootstrap.sh b/vagrant/basebuild/bootstrap.sh index 649a47f65..1398925a0 100644 --- a/vagrant/basebuild/bootstrap.sh +++ b/vagrant/basebuild/bootstrap.sh @@ -38,7 +38,7 @@ ubuntu_systems() { mount /mnt/huge # Install virtualenv for test execution - apt-get install -y --force-yes python-virtualenv python-pip python-dev + apt-get install -y --force-yes python-virtualenv python-pip python-dev python3-dev } rh_systems() { @@ -50,6 +50,9 @@ rh_systems() { # Install jdk and maven yum install -y java-1.8.0-openjdk-devel + # Install python development + yum install -y python34-devel + # Install EPEL yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm |