From ca1fa934ec6f8381f10196b5ab7a18df7b775360 Mon Sep 17 00:00:00 2001 From: nu_no Date: Fri, 18 Oct 2019 11:35:19 +0200 Subject: [PATCH] Add installation from repository (#900) It think it's a good idea given that some features that are mentioned in the documentation (such as `root_validator`) are not yet in the current PyPI version. --- docs/install.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/install.md b/docs/install.md index 9bfbfc0..161ad3e 100644 --- a/docs/install.md +++ b/docs/install.md @@ -39,4 +39,11 @@ pip install pydantic[typing_extensions] pip install pydantic[email,typing_extensions] ``` -Of course, you can also install these requirements manually with `pip install ...`. +Of course, you can also install these requirements manually with `pip install email-validator` and/or `pip install typing_extensions`. + +And if you prefer to install *pydantic* directly from the repository: +```bash +pip install git+git://github.com/samuelcolvin/pydantic@master#egg=pydantic +# or with extras +pip install git+git://github.com/samuelcolvin/pydantic@master#egg=pydantic[email,typing_extensions] +```