Skip to content

Installation

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

pip install polars
cargo add polars
yarn add nodejs-polars

Importing

To use the library import it into your project

import polars as pl
use polars::prelude::*;
// esm
import pl from 'nodejs-polars';

// require
const pl = require('nodejs-polars');