Skip to content
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: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ RMSD: 2.6444 Angstrom

## Quick Install

- latest version (from GitHub): `pip install git+git://github.com/rasbt/biopandas.git#egg=biopandas`
- latest PyPI version: `pip install biopandas`
- install the latest version (from GitHub): `pip install git+git://github.com/rasbt/biopandas.git#egg=biopandas`
- install the latest PyPI version: `pip install biopandas`
- install biopandas via conda-forge: `conda install biopandas -c conda-forge`


For more information, please see [http://rasbt.github.io/biopandas/installation/](http://rasbt.github.io/biopandas/installation/).
24 changes: 23 additions & 1 deletion docs/sources/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,34 @@



You can install `biopandas` directly via pip by executing the following code from your command line:
## PyPI

You can install the latest stable release of `biopandas` directly from Python's package index via `pip` by executing the following code from your command line:

```bash
pip install biopandas
```

## Conda-forge

The latest stable release of `biopandas` is now also available via [conda-forge](https://github.com/conda-forge/biopandas-feedstock); you can install it via


```bash
conda install biopandas -c conda-forge
```

or simply

```bash
conda install biopandas
```
if you have `conda-forge` already [added to your channels](https://github.com/conda-forge/biopandas-feedstock).



## Latest GitHub Source Code

<br>

You want to try out the latest features before they go live on PyPI? Install the `biopandas` dev-version latest development version from the GitHub repository by executing
Expand Down