From 619ae2b23be6758cb9d935f73f4b7ecbf7bb1b15 Mon Sep 17 00:00:00 2001 From: rforstner Date: Wed, 26 Jan 2022 17:47:17 +0100 Subject: [PATCH] adapting jenkinsfile --- installpyenv.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installpyenv.sh b/installpyenv.sh index 88b67e8..52c5e81 100644 --- a/installpyenv.sh +++ b/installpyenv.sh @@ -10,16 +10,16 @@ source ~/.bashrc # Step 2. Install missing headers for all the Python modules to be built and make sure gcc is installed -sudo zypper install -y readline-devel sqlite3-devel libbz2-devel zlib-devel libopenssl-devel libffi-devel gcc +#sudo zypper install -y readline-devel sqlite3-devel libbz2-devel zlib-devel libopenssl-devel libffi-devel gcc # Step 3. Install the desired Python version -pyenv install 3.7.4 +#pyenv install 3.7.4 # Step 4. Install virtualenv #sudo zypper install -y python3-virtualenv -pip3 install virtualenv +#pip3 install virtualenv # Step 5. Create a virtual environment for the installed Python and activate it mkdir ~/pythons