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

Adding conda as installation methods #253

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ which omits many dependencies (everything in `test_requirements.txt`).
However, this will disable many functionalities and cause `import kats` to log
warnings. See `setup.py` for full details and options.

Kats is on conda-forge, so you can use `conda` to install it.

```bash
conda install -c conda-forge kats

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tried using conda myself. the following sequence worked, since Kats require python 3.8 to work:

# create conda environment
conda create --name kats python=3.8
conda activate kats

# install Kats
conda install -c conda-forge kats

```

## Examples

Here are a few sample snippets from a subset of Kats offerings:
Expand Down