Skip to content

Commit

Permalink
add a couple of lines about setup
Browse files Browse the repository at this point in the history
  • Loading branch information
ivannz committed Jun 14, 2022
1 parent a3936e8 commit 168a359
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@

`plyr` happens to coincide with a similarly named library for [`R` statistical computations language](https://www.r-project.org/), which streamlines dataframe and vector/matrix transformations.

## Setup

The package can be installed from `pip`:

```bash
pip install python-plyr
```

The development environment could be initialized with the following commands:

```bash
# create a dedicated env
conda create -n plyr "python>=3.7" pip pytest twine \
&& conda activate plyr \
&& pip install build

# build and install
pip install -e . -vv
```

## the Essential Example

Expand Down

0 comments on commit 168a359

Please sign in to comment.