Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mention the --features extra requirement in the text #630

Merged
merged 1 commit into from
Oct 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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