Back to Polars

Installation

docs/getting-started/installation.md

latest549 B
Original Source

Installation

Polars is a library and installation is as simple as invoking the package manager of the corresponding programming language.

=== ":fontawesome-brands-python: Python"

``` bash
pip install polars
```

=== ":fontawesome-brands-rust: Rust"

``` shell
cargo add polars
```

Importing

To use the library import it into your project

=== ":fontawesome-brands-python: Python"

``` python
import polars as pl
```

=== ":fontawesome-brands-rust: Rust"

``` rust
use polars::prelude::*;
```