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.
This commit is contained in:
nu_no
2019-10-18 11:35:19 +02:00
committed by Samuel Colvin
parent 2427f635e8
commit ca1fa934ec
+8 -1
View File
@@ -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]
```