Install dash-ag-grid with conda

When i’m not using wasmdash, how to install dash-ag-grid within a conda environment.

Is there a anaconda channel (like conda-forge) to install it from?
Or do I have to use the pip install method within the conda enviroment.yml file?

hi @PierreVeelen
Have you tried these instructions?

What happens when you do: conda install dash-ag-grid=2.3.0

I first used an environment.yml file with dash-ag-grid=2.3.0 in it.
so:

dependencies:
    - dash-ag-grid=2.3.0

Then conda complains that the package is not found.

Next I used the pip method in the environment.yml file:

dependencies:
   - pip=23.2.1
   - pip:
     - dash-ag-grid==2.3.0

Conda installs the package, but that is not my prefered method.
But it works.