Installing

Note

We are assuming you have a working mamba installation in your computer. If this is not the case, please refer to their official documentation.

If you installed mamba into an existing conda installation, also make sure that the conda-forge channel is configured by running conda config --add channels conda-forge.

Install from the conda package

  1. Create a new conda environment called kissim with the kissim package and all its dependencies installed:

    mamba create -n kissim kissim
    
  2. Activate the new conda environment:

    conda activate kissim
    
  3. Test that your installation works:

    kissim -h
    

Install from the latest development snapshot

Install the latest development snapshot from the GitHub repository’s main branch.

  1. Create a new conda environment called kissim:

    mamba env create -f https://raw.githubusercontent.com/volkamerlab/kissim/main/devtools/conda-envs/test_env.yaml -n kissim
    
  2. Activate the new conda environment:

    conda activate kissim
    
  3. Install kissim package via pip:

    pip install https://github.com/volkamerlab/kissim/archive/main.tar.gz
    
  4. Test that your installation works:

    kissim -h