This commit is contained in:
Adam Wojdyla 2022-04-02 03:30:08 +02:00
parent 7ef773d268
commit 83bc088148

View File

@ -26,9 +26,9 @@ pipeline {
stages {
stage('Prepare dataset') {
steps {
sh 'python3 -m pip install kaggle'
sh 'python3 -m pip install numpy'
sh 'python3 -m pip install pandas'
sh 'python3 -m pip install kaggle --no-cache-dir '
sh 'python3 -m pip install numpy --no-cache-dir '
sh 'python3 -m pip install pandas --no-cache-dir '
sh 'python3 ./script.py'
}
}