I'm trying to install facebook prophet using this answer but I get an error saying that fbprophet requires python versions lower than 3.8 and that I have 3.9. However I downloaded and installed 3.7.
Here is the error message I get in Anaconda Prompt:
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.5,<3.6.0a0|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0']
Your python: python=3.9
And when I run python -V
, low and behold I get indeed that my version is Python 3.9.7. However, checking my programs I see this:
Does anyone know why this happens and how to fix it?