Skip to content

Commit 62326f2

Browse files
change: Remove docker-compose from local requirements (#3913)
* change: Remove docker-compose from local requirements * Fix hyperlink * fix wording, fix link again
1 parent 42298df commit 62326f2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

doc/overview.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1550,11 +1550,14 @@ them to your local environment. This is a great way to test your deep learning s
15501550
managed training or hosting environments. Local Mode is supported for frameworks images (TensorFlow, MXNet, Chainer, PyTorch,
15511551
and Scikit-Learn) and images you supply yourself.
15521552

1553-
You can install all necessary for this feature dependencies using pip:
1553+
You can install necessary dependencies for this feature using pip; local mode also requires docker-compose which you can
1554+
install using the following steps (More info - https://github.com/docker/compose#where-to-get-docker-compose ):
15541555

15551556
::
15561557

15571558
pip install 'sagemaker[local]' --upgrade
1559+
curl -L "https://github.com/docker/compose/releases/download/v2.7.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
1560+
chmod +x /usr/local/bin/docker-compose
15581561

15591562
If you want to keep everything local, and not use Amazon S3 either, you can enable "local code" in one of two ways:
15601563

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
urllib3>=1.26.8,<1.26.15
2-
docker-compose==1.29.2
32
docker>=5.0.2,<7.0.0
43
PyYAML>=5.4.1,<7

0 commit comments

Comments
 (0)