-
Notifications
You must be signed in to change notification settings - Fork 4.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am a beginner and I do not know How to solve this Error #2580
Comments
tried the """conda install -c conda-forge fbprophet""" and this is the result |
does your problem solved |
Hi @SrijonCodeist, It looks like fbprophet is incompatible with Python 3.9. You can resolve this by creating a new conda environment with Python 3.8. Here’s how: Create a new environment with Python 3.8: Activate the environment: Install fbprophet: This should resolve the compatibility issue. |
Hi @SrijonCodeist , I had the same error as you. You just need to use python 3.8 You can do this by creating a new virtual environment
You can read more about conda here |
You should use the Prophet is on PyPI, so you can use From the README: python -m pip install prophet
After installation, you can get started! AnacondaProphet can also be installed through conda-forge. conda install -c conda-forge prophet |
Solving environment:
Found conflicts! Looking for incompatible packages.
This can take several minutes. Press CTRL-C to abort.
Building graph of deps: 0%| | 0/5 [00:00<?, ?it/s]\Examining @/win-64::__cuda==12.3=0: 100%|████████████████████████████████████████████████| 5/5 [00:10<00:00, 2.24s/it]\failed
UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:
Specifications:
Your python: python=3.9
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 text was updated successfully, but these errors were encountered: