From a1a894dce232127c83a206f39777a3c059ce8b24 Mon Sep 17 00:00:00 2001 From: "Florenz A.P. Hollebrandse" Date: Wed, 9 Oct 2024 08:09:03 +0100 Subject: [PATCH 1/2] Add conda install instructions --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index bacc197..48df3ee 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,19 @@ Deploy your AI/ML model to Amazon SageMaker for Real-Time Inference and Batch Tr ## Installing +Using package managers like Pip or Poetry: + ```shell python -m pip install inference-server ``` +Using package managers like Conda or Mamba: + +```shell +conda install conda-forge::inference-server +``` + + ## Developing To setup a scratch/development virtual environment (under `.venv/`), first install [Tox][]. From fdafd00862cc8209e44a06d8c96030804006911d Mon Sep 17 00:00:00 2001 From: "Florenz A.P. Hollebrandse" Date: Wed, 9 Oct 2024 08:12:21 +0100 Subject: [PATCH 2/2] Add link to conda-forge repo --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 48df3ee..f6bc50c 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,8 @@ Using package managers like Conda or Mamba: conda install conda-forge::inference-server ``` +See for details. + ## Developing