From 087144469d02935070646e71ec973581c814a058 Mon Sep 17 00:00:00 2001 From: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com> Date: Wed, 12 May 2021 11:24:18 +0300 Subject: [PATCH] [ubuntu] Remove pip symlink creation (#3366) --- images/linux/scripts/installers/python.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/images/linux/scripts/installers/python.sh b/images/linux/scripts/installers/python.sh index bd78087c..79c57d53 100644 --- a/images/linux/scripts/installers/python.sh +++ b/images/linux/scripts/installers/python.sh @@ -11,13 +11,10 @@ source $HELPER_SCRIPTS/os.sh # Install Python, Python 3, pip, pip3 if isUbuntu16 || isUbuntu18; then - apt-get install -y --no-install-recommends python python-dev python-pip python3 python3-dev python3-pip python3-venv + apt-get install -y --no-install-recommends python python-dev python-pip fi -if isUbuntu20; then - apt-get install -y --no-install-recommends python3 python3-dev python3-pip python3-venv - ln -s /usr/bin/pip3 /usr/bin/pip -fi +apt-get install -y --no-install-recommends python3 python3-dev python3-pip python3-venv if isUbuntu18 || isUbuntu20 ; then # Install pipx