From af8b658b26090780c8260276a6b4cfd415a6dc0f Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Tue, 23 Feb 2021 13:59:29 +0000 Subject: [PATCH] Add installation-methods to docs (#3720) --- docs/docs/getting_started.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/docs/getting_started.rst b/docs/docs/getting_started.rst index ffe37f3a0..ae418cb40 100644 --- a/docs/docs/getting_started.rst +++ b/docs/docs/getting_started.rst @@ -9,6 +9,19 @@ Installing Moto You can use ``pip`` to install the latest released version of ``moto``:: + pip install moto[ec2,s3,..] + +This will install Moto, and the dependencies required for that specific service. + +If you don't care about the number of dependencies, or if you want to mock many AWS services:: + + pip install moto[all] + +Not all services might be covered, in which case you might see a warning: +`moto 1.3.16 does not provide the extra 'service'`. + +You can ignore the warning, or simply install moto as is:: + pip install moto If you want to install ``moto`` from source::