I tried pip install fcmeans and pip install f-c-means, but neither of them worked.
I tried pip install fcmeans and pip install f-c-means, but neither of them worked.
environment.yamlenvironment.yaml so that it contains the packages you want to work with. See the sample environment.yaml below. Note that fuzzy-c-means is pip-installed because it doesn't seem that it is currently hosted directly through anaconda channelsenvironment.yaml is saved), run conda env create --file environment.yaml. This will create a new virtual environment containing the packages you want, including fuzzy-c-means.name in the environment.yaml using conda activate my_env_name. You should note that the name of the environment should appear in the terminal prompt, indicating that the virtual environment is active.environment.yaml and then either delete the entire environment and build it from scratch or run conda env update --file environment.yaml --pruneenvironment.yaml filename: my_env_name
channels:
- defaults
dependencies:
- python=3.9
- jupyter
- notebook
- numpy
- pandas
- pip
- pip:
- fuzzy-c-means