From 5d41b44a139e7bca0d19ea51084779e0c3f6ea40 Mon Sep 17 00:00:00 2001 From: "Mcintosh, Liam S (UG - Computer Science)" <lm00840@surrey.ac.uk> Date: Fri, 21 May 2021 17:47:30 +0000 Subject: [PATCH] Install python libraries before running script --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1e136b8..26ef0e5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,6 +8,11 @@ update-data: - updating script: - python -V + - pip install pandas + - pip install numpy + - pip install pickle + - pip install sklearn + - pip install nltk - python update.py only: changes: -- GitLab