From 864a0fbb1d009cf8a415c5c1b7d5499103932073 Mon Sep 17 00:00:00 2001 From: Paul Dechamps <paul.dechamps@uliege.be> Date: Thu, 14 Dec 2023 10:15:13 +0100 Subject: [PATCH] (pip) Other way to install pip 2 --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8bd2696..7777928 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,8 +24,8 @@ build: <<: *global_tag_def stage: build before_script: - - apt-get install -y python3-pip - - python3 -m pip install scipy==1.11.3 --user + - apt-get install -y python-pip + - python -m pip install scipy==1.11.3 --user script: - git submodule init - git submodule update -- GitLab