Skip to content

Commit

Permalink
Mention the features extra requirement (#630)
Browse files Browse the repository at this point in the history
Note on top of the dataframe and database section that `--features extra` is required to use them
  • Loading branch information
sholderbach committed Oct 7, 2022
1 parent f9e706b commit 7e90349
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions book/dataframes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
The dataframe commands are available from version 0.33.1 onwards
:::

::: warning
To use the dataframe support you need a fully-featured build with `cargo build --features extra`.
Most binary releases like the one provided via [GitHub](https://github.com/nushell/nushell/releases) should already include this.
[See the installation instructions](/book/installation.md) for further details.
:::

As we have seen so far, Nushell makes working with data its main priority.
`Lists` and `Tables` are there to help you cycle through values in order to
perform multiple operations or find data in a breeze. However, there are
Expand Down
10 changes: 8 additions & 2 deletions book/loading_data.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ Nu currently supports the following formats for loading data directly into table
- ics
- ini
- json
- nuon
- [nuon](#nuon)
- ods
- SQLite databases
- [SQLite databases](#sqlite) (requires `--features extra` build)
- ssv
- toml
- tsv
Expand Down Expand Up @@ -238,6 +238,12 @@ license = "MIT"

## SQLite

::: warning
To use the SQLite support you need a fully-featured build with `cargo build --features extra`.
Most binary releases like the one provided via [GitHub](https://github.com/nushell/nushell/releases) should already include this.
[See the installation instructions](/book/installation.md) for further details.
:::

SQLite databases are automatically detected by [`open`](commands/open.md), no matter what their file extension is. You can open a whole database:

```
Expand Down

0 comments on commit 7e90349

Please sign in to comment.