diff options
Diffstat (limited to 'systems/ubuntu/14.04')
-rwxr-xr-x | systems/ubuntu/14.04/build_base_machine.sh | 3 | ||||
-rwxr-xr-x | systems/ubuntu/14.04/prepare_python_env.sh | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/systems/ubuntu/14.04/build_base_machine.sh b/systems/ubuntu/14.04/build_base_machine.sh index 3b4185fc..9fa8511c 100755 --- a/systems/ubuntu/14.04/build_base_machine.sh +++ b/systems/ubuntu/14.04/build_base_machine.sh @@ -61,6 +61,7 @@ cifs-utils socat libpixman-1-0 libpixman-1-dev +sysstat # Java runtime environment: Required for Ixia TclClient default-jre @@ -87,4 +88,4 @@ ln -sf $(locate libc.so.6) /lib/libc.so.6 pip3 install virtualenv # Create hugepage dirs -mkdir -p /dev/hugepages
\ No newline at end of file +mkdir -p /dev/hugepages diff --git a/systems/ubuntu/14.04/prepare_python_env.sh b/systems/ubuntu/14.04/prepare_python_env.sh index f9c2def8..6ef8680d 100755 --- a/systems/ubuntu/14.04/prepare_python_env.sh +++ b/systems/ubuntu/14.04/prepare_python_env.sh @@ -23,7 +23,7 @@ fi # enable virtual environment in a subshell, so QEMU build can use python 2.7 -(virtualenv-3.4 "$VSPERFENV_DIR" +(virtualenv "$VSPERFENV_DIR" source "$VSPERFENV_DIR"/bin/activate pip install -r ../requirements.txt -pip install pylint)
\ No newline at end of file +pip install pylint) |