Update the command for install for python3 (#228)

Update the documentation for install to use python3 matching documentation on https://pypi.org/project/openmetadata-ingestion/
This commit is contained in:
Gaurav Tungakar 2021-08-18 21:55:23 -07:00 committed by GitHub
parent 7c28e92c84
commit cbe966c294
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,8 +21,8 @@ OpenMetadata is built using Java, DropWizard, Jetty, and MySQL.
{% tabs %}
{% tab title="Install Using PyPI" %}
```bash
pip install 'openmetadata-ingestion[sample-tables, elasticsearch]'
python -m spacy download en_core_web_sm
python3 -m pip install 'openmetadata-ingestion[sample-tables, elasticsearch]'
python3 -m spacy download en_core_web_sm
```
{% endtab %}