diff --git a/JenkinsfileDVC b/JenkinsfileDVC index 739424d..b048ffe 100644 --- a/JenkinsfileDVC +++ b/JenkinsfileDVC @@ -27,11 +27,20 @@ pipeline { } } - // stage('Install DVC') { - // steps { - // sh 'pip install dvc' - // } - // } + stage('Setup Python') { + steps { + sh ''' + curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py + python3 get-pip.py --user + ''' + } + } + + stage('Install DVC') { + steps { + sh 'python3 -m pip install --user dvc' + } + } stage('Pull DVC Files') { steps {