File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,15 @@ phases:
13
13
commands :
14
14
- echo Logging in to Amazon ECR...
15
15
- $(aws ecr get-login --no-include-email --region $AWS_DEFAULT_REGION)
16
+ - echo Installing dependencies...
17
+ - curl -LO http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
18
+ - bash Miniconda3-latest-Linux-x86_64.sh -bfp /miniconda3
19
+ - export PATH=/miniconda3/bin:${PATH}
20
+ - conda install python=3.7
21
+ - conda update -y conda
22
+ - conda install -y 'requests<2.21' # sagemaker-python-sdk requires requests<2.21
23
+ - python3 -m pip install pip==20.1 # The new pip denpendency resolver in 20.2+ can't resolve 1.0-1 and 0.90 dependencies
24
+ - python3 -m pip install .[test]
16
25
build :
17
26
commands :
18
27
- echo Build started on `date`
You can’t perform that action at this time.
0 commit comments