Help with Install FB Prophet

I am running the latest (stable) version of Anaconda on Debian Linux.
When I try and install FB Prophet with this command, I get the errors below
conda install -c conda-forge fbprophet

Error’s

Your python: python=3.10

If python is on the left-most side of the chain, that’s the version you’ve asked for.
When python appears to the right, that indicates that the thing on the left is somehow
not available for the python version you are constrained to. Note that conda will not
change your python version to a different minor version unless you explicitly specify
that.

The following specifications were found to be incompatible with your system:

  • feature:/linux-64::__glibc==2.31=0
  • feature:|@/linux-64::__glibc==2.31=0
  • fbprophet → libgcc-ng[version=‘>=7.5.0’] → __glibc[version=‘>=2.17’]

Your installed version is: 2.31

Good afternoon,

I saw that you are running the command to install the package on a base environment, you should create an environment and use it instead so that you can avoid dependency issues (environments work in a similar way as container does).

Please use these commands:

conda create -n ENV1

conda activate ENV1

conda install -n ENV1 -c conda-forge fbprophet

Please let us know if that worked for you.

Thanks for the suggestion, but after running,
conda activate RIMB

And running:

conda install -n RIMB -c conda-forge fbprophet

I got this error:
Solving environment: \
Found conflicts! Looking for incompatible packages.
This can take several minutes. Press CTRL-C to abort.
failed

UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:

Specifications:

  • fbprophet → python[version=‘2.7.|3.5.|3.6.*|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|>=3.5,<3.6.0a0’]

Your python: python=3.11

If python is on the left-most side of the chain, that’s the version you’ve asked for.
When python appears to the right, that indicates that the thing on the left is somehow
not available for the python version you are constrained to. Note that conda will not
change your python version to a different minor version unless you explicitly specify
that.

The following specifications were found to be incompatible with your system:

  • feature:/linux-64::__glibc==2.31=0
  • fbprophet → libgcc-ng[version=‘>=7.5.0’] → __glibc[version=‘>=2.17’]
  • python=3.11 → libgcc-ng[version=‘>=11.2.0’] → __glibc[version=‘>=2.17’]

Your installed version is: 2.31

Good afternoon,

Thank you so much for contacting us again, what you can do is try to use an older version of python on another environment, let’s do that with these commands:

conda create -n ENVNAME python=3.8

conda activate ENVNAME

conda install -n ENVNAME -c conda-forge fbprophet

You can delete older environments with this commands:

conda remove -n ENVNAME

Please tell us if that worked for you.