I tried pip install fcmeans
and pip install f-c-means
, but neither of them worked.
How to install fuzzy c-means package in anaconda?
1.2k views Asked by Eltun Əhmədov At
2
I tried pip install fcmeans
and pip install f-c-means
, but neither of them worked.
Here is what you could do:
environment.yaml
environment.yaml
so that it contains the packages you want to work with. See the sampleenvironment.yaml
below. Note thatfuzzy-c-means
is pip-installed because it doesn't seem that it is currently hosted directly through anaconda channelsenvironment.yaml
is saved), runconda env create --file environment.yaml
. This will create a new virtual environment containing the packages you want, includingfuzzy-c-means
.name
in theenvironment.yaml
usingconda 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 runconda env update --file environment.yaml --prune
Sample
environment.yaml
file