diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 10c94552251a7ec4b5a603036c25cdde90fe836d..913e1a7e5bc65d7a6494909c435993193f4887cb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,11 +3,11 @@ image: alpine:3.14
 build-dois-csv:
   before_script:
     - apk update
-    - apk add python3 git
+    - apk add python3 py3-pip git
   script:
-    - python3 -m "pip install pandas"
-    - python3 -m "pip install requests"
-    - python3 -m "pip install matplotlib"
+    - pip install pandas
+    - pip install requests
+    - pip install matplotlib
     - python3 run-all-codes.py
   after_script:
     - git config user.name "${GITLAB_USER_NAME}"