Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add junifer to conda-forge #221

Merged
merged 4 commits into from
May 9, 2023
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
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
![PyPI](https://img.shields.io/pypi/v/junifer?style=flat-square)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/junifer?style=flat-square)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/junifer?style=flat-square)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/junifer/badges/version.svg)](https://anaconda.org/conda-forge/junifer)
![GitHub](https://img.shields.io/github/license/juaml/junifer?style=flat-square)
![Codecov](https://img.shields.io/codecov/c/github/juaml/junifer?style=flat-square)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=flat-square)](https://github.com/psf/black)
Expand Down Expand Up @@ -34,7 +35,6 @@ The documentation is available at [https://juaml.github.io/junifer](https://juam
* `testing`: Testing components module.
* `utils`: Utilities module (e.g. logging)


## Installation

Use `pip` to install from PyPI like so:
Expand All @@ -43,6 +43,12 @@ Use `pip` to install from PyPI like so:
pip install junifer
```

You can also install via `conda`, like so:

```
synchon marked this conversation as resolved.
Show resolved Hide resolved
conda install -c conda-forge junifer
```

## Citation

If you use junifer in a scientific publication, we would appreciate if you cite our work. Currently, we do not have a publication, so feel free to use the project [URL](https://juaml.github.io/junifer).
Expand Down
13 changes: 13 additions & 0 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,19 @@ Use ``pip`` to install julearn from `PyPI <https://pypi.org>`_, like so:

pip install junifer

You can also install via ``conda``, like so:
synchon marked this conversation as resolved.
Show resolved Hide resolved

.. code-block:: bash

conda install -c conda-forge junifer

.. attention::

Installation on macOS and Windows might fail via ``conda`` due to ``datalad``.
In that case, please refer to
`Datalad installation instructions
<http://handbook.datalad.org/en/latest/intro/installation.html>`_ for solutions.
In case the problem persists, please install it via ``pip`` as mentioned earlier.

.. _install_development_git:

Expand Down