From 97a317b322983d1fa09602b067122937fcc8bb8d Mon Sep 17 00:00:00 2001 From: Darii Nurgaleev <50947177+Darleev@users.noreply.github.com> Date: Tue, 26 Jan 2021 23:06:25 +0700 Subject: [PATCH] [Ubuntu] Add /home/runner/.local/bin to PATH (#2491) * return it back * added python new path * added skel path implementation --- images/linux/scripts/installers/python.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/images/linux/scripts/installers/python.sh b/images/linux/scripts/installers/python.sh index b794ea870..193d810b8 100644 --- a/images/linux/scripts/installers/python.sh +++ b/images/linux/scripts/installers/python.sh @@ -40,4 +40,7 @@ if isUbuntu18 || isUbuntu20 ; then fi fi +# Adding this dir to PATH will make installed pip commands are immediately available. +echo 'export PATH="$PATH:$HOME/.local/bin"' | tee -a /etc/skel/.bashrc + invoke_tests "Tools" "Python"