Skip to content

Commit

Permalink
add conda instructions (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli authored Jun 3, 2024
1 parent 0d85725 commit 3d21368
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 16 deletions.
24 changes: 14 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ Extremely lightweight and extensible compatibility layer between Polars, pandas,
Seamlessly support all, without depending on any!

-**Just use** a subset of **the Polars API**, no need to learn anything new
-**No dependencies** (not even Polars), keep your library lightweight
- ✅ Separate **lazy** and eager APIs
-Use **Expressions**
-100% branch coverage, tested against pandas and Polars nightly builds
- ✅ Preserve your Index (if present) without it getting in the way
-**Zero 3rd party imports**, Narwhals only uses what you already have
-**Zero dependencies**, **zero 3rd-party imports**: Narwhals only uses what
the user passes in, so you can keep your library lightweight
-Separate **lazy** and eager APIs, use **expressions**
-Support pandas' complicated type system and index, without
either getting in the way
-**100% branch coverage**, tested against pandas and Polars nightly builds

## Used by

Expand All @@ -34,10 +34,14 @@ Join the party!

## Installation

```
pip install narwhals
```
Or just vendor it, it's only a bunch of pure-Python files.
- pip (recommended, as it's the most up-to-date)
```
pip install narwhals
```
- conda-forge (also fine, but the latest version may take longer to appear)
```
conda install -c conda-forge narwhals
```

## Usage

Expand Down
12 changes: 6 additions & 6 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ Extremely lightweight compatibility layer between Polars, pandas, and more.
Seamlessly support both, without depending on either!

-**Just use** a subset of **the Polars API**, no need to learn anything new
-**No dependencies** (not even Polars), keep your library lightweight
- ✅ Support both **lazy** and eager execution
-Use **Expressions**
-Tested against pandas and Polars nightly builds!
- ✅ Preserve your Index (if present) without it getting in the way!
-**Zero 3rd party imports**, Narwhals only uses what you already have!
-**Zero dependencies**, **zero 3rd-party imports**: Narwhals only uses what
the user passes in, so you can keep your library lightweight
-Separate **lazy** and eager APIs, use **expressions**
-Support pandas' complicated type system and index, without
either getting in the way
-**100% branch coverage**, tested against pandas and Polars nightly builds

## Who's this for?

Expand Down

0 comments on commit 3d21368

Please sign in to comment.