diff --git a/files/debs/general b/files/debs/general index ac297435db..fe0061337a 100644 --- a/files/debs/general +++ b/files/debs/general @@ -28,6 +28,7 @@ openssl pkg-config psmisc python3-dev +python3-venv tar tcpdump unzip diff --git a/stackrc b/stackrc index 4e33b6838f..17641c343d 100644 --- a/stackrc +++ b/stackrc @@ -150,7 +150,8 @@ export PYTHON2_VERSION=${PYTHON2_VERSION:-${_DEFAULT_PYTHON2_VERSION:-2.7}} # Create a virtualenv with this if [[ ${USE_PYTHON3} == True ]]; then - export VIRTUALENV_CMD="virtualenv -p python3" + # Use the built-in venv to avoid more dependencies + export VIRTUALENV_CMD="python3 -m venv" else export VIRTUALENV_CMD="virtualenv " fi