mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
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:
+8
-1
@@ -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]
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user