Skip to content

Commit

Permalink
Add Conda Forge installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
sethmlarson authored May 15, 2020
1 parent 6ca4158 commit d1444f8
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 8 deletions.
30 changes: 22 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,21 @@ _Note, this project is still very much a work in progress and in an alpha state;
</p>
<table>
<tr>
<td>Latest Release</td>
<td>PyPI</td>
<td>
<a href="https://pypi.org/project/eland/">
<img src="https://img.shields.io/pypi/v/eland.svg" alt="latest release" />
<img src="https://img.shields.io/pypi/v/eland.svg" alt="latest release"/>
</a>
</td>
</tr>
<tr>
<td>Conda Forge</td>
<td>
<a href="https://anaconda.org/conda-forge/eland">
<img src="https://img.shields.io/conda/vn/conda-forge/eland" alt="latest release"/>
</a>
</td>
</tr>
<tr>
<td>Package Status</td>
<td>
Expand Down Expand Up @@ -161,16 +170,21 @@ Operations:
See [docs](https://eland.readthedocs.io/en/latest) and [demo_notebook.ipynb](https://eland.readthedocs.io/en/latest/examples/demo_notebook.html) for more examples.

## Where to get it
The source code is currently hosted on GitHub at:
https://github.com/elastic/eland

Binary installers for the latest released version are available at the [Python
package index](https://pypi.org/project/eland).
Eland can be installed from [PyPI](https://pypi.org/project/eland) via pip:

```sh
python -m pip install eland
```bash
$ python -m pip install eland
```

Eland can also be installed from [Conda Forge](https://anaconda.org/conda-forge/eland) with Conda:

```bash
$ conda install -c conda-forge eland
```

The [source code](https://github.com/elastic/eland) is currently available on GitHub.

## Versions and Compatibility

### Python Version Support
Expand Down
5 changes: 5 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,11 @@
# a list of builtin themes.

html_theme = "pydata_sphinx_theme"
html_theme_options = {
"external_links": [],
"github_url": "https://github.com/elastic/eland",
"twitter_url": "https://twitter.com/elastic",
}

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
Expand Down
14 changes: 14 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ eland: pandas-like data analysis toolkit backed by Elasticsearch
Where possible the package uses existing Python APIs and data structures to make it easy to switch between Numpy, Pandas, Scikit-learn to their elasticsearch powered equivalents.
In general, the data resides in elasticsearch and not in memory, which allows eland to access large datasets stored in elasticsearch.

Installing Eland
~~~~~~~~~~~~~~~~

Eland can be installed from `PyPI <https://pypi.org/project/eland>`_ via pip:

.. code-block:: bash
$ python -m pip install eland
Eland can also be installed from `Conda Forge <https://anaconda.org/conda-forge/eland>`_ with Conda:

.. code-block:: bash
$ conda install -c conda-forge eland
.. toctree::
:maxdepth: 2
Expand Down

0 comments on commit d1444f8

Please sign in to comment.