Installation

Contents

Installation#

PyPi#

To install the fastdfe, you can use pip:

pip install fastdfe

fastdfe is compatible with Python 3.10 through 3.12.

Conda#

However, to avoid potential conflicts with other packages, it is recommended to install fastdfe in an isolated environment. The easiest way to do this is to use conda (or mamba):

To do this, you can run

mamba create -n fastdfe 'python>=3.10,<3.13' pip
mamba activate fastdfe
pip install fastdfe

Alternative, create a new file called environment.yml with the following content:

name: fastdfe
channels:
  - defaults
dependencies:
  - python>=3.10,<3.13
  - pip
  - pip:
      - fastdfe

Run the following command to create a new conda environment using the environment.yml file:

mamba env create -f environment.yml

Activate the newly created conda environment:

mamba activate fastdfe

You are now ready to use the fastdfe package within the isolated conda environment.

import fastdfe as fd