Skip to content

Commit

Permalink
Fix installation section
Browse files Browse the repository at this point in the history
  • Loading branch information
d.a.bunin committed Feb 16, 2022
1 parent 0892c1c commit 915379b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,6 @@ Available user extensions are the following:
* `torch`
* `wandb`

There are also developer extensions. All the extensions are listed at [`pyproject.toml`](https://github.com/tinkoff-ai/etna/blob/master/pyproject.toml#L93).

Without the appropriate extension you will get an `ImportError` trying to import the model that needs it.
For example, `etna.models.ProphetModel` needs `prophet` extension and can't be used without it.

Install extension:
```bash
pip install etna[extension-name]
Expand All @@ -75,6 +70,11 @@ Install all extensions:
pip install etna[all]
```

There are also developer extensions. All the extensions are listed in [`pyproject.toml`](https://github.com/tinkoff-ai/etna/blob/master/pyproject.toml#L93).

Without the appropriate extension you will get an `ImportError` trying to import the model that needs it.
For example, `etna.models.ProphetModel` needs `prophet` extension and can't be used without it.

### Configuration

ETNA supports configuration files. It means that library will check that all the specified packages are installed prior to script start and NOT during runtime.
Expand Down

0 comments on commit 915379b

Please sign in to comment.