From the horse's mouth: The package name is now prophet instead of fbprophet...
so for latest python versions:
conda install -c conda-forge prophet
In particular, as we see with mamba here is what is available for fbprophet:
└─ fbprophet is installable with the potential options
├─ fbprophet [0.1.1|0.1.post1|...|0.5] would require
│ └─ python [2.7* |>=2.7,<2.8.0a0 ], which can be installed;
├─ fbprophet [0.1.1|0.1.post1|0.2|0.2.1|0.3.post2] would require
│ └─ python [3.5* |>=3.5,<3.6.0a0 ], which can be installed;
├─ fbprophet [0.1.1|0.1.post1|0.2|0.2.1] would require
│ └─ python 3.6* , which can be installed;
├─ fbprophet [0.3.post2|0.4.post2|0.5|0.6|0.7.1] would require
│ └─ python >=3.6,<3.7.0a0 , which can be installed;
├─ fbprophet [0.5|0.6|0.7.1] would require
│ └─ python >=3.7,<3.8.0a0 , which can be installed;
└─ fbprophet 0.7.1 would require
└─ python >=3.8,<3.9.0a0 , which can be installed.
In more detail, for linux, but assume similar for win, fbprophet is available in conda-forge for older python versions:
Name Version Build Channel
─────────────────────────────────────────────────────────
fbprophet 0.7.1 py38h950e882_0 conda-forge/linux-64
fbprophet 0.7.1 py37h3340039_0 conda-forge/linux-64
fbprophet 0.7.1 py36h831f99a_0 conda-forge/linux-64
fbprophet 0.6 py37he1b5a44_0 conda-forge/linux-64
fbprophet 0.6 py36he1b5a44_0 conda-forge/linux-64
fbprophet 0.5 py27he1b5a44_0 conda-forge/linux-64
fbprophet 0.5 py27he1b5a44_1 conda-forge/linux-64
(... similar results of in between versions ...)
fbprophet 0.1.1 np112py27_0 conda-forge/linux-64
fbprophet 0.1.1 np111py36_0 conda-forge/linux-64
fbprophet 0.1.1 np111py35_0 conda-forge/linux-64
fbprophet 0.1.post1 py36_0 conda-forge/linux-64
fbprophet 0.1.post1 py35_0 conda-forge/linux-64
fbprophet 0.1.post1 py27_0 conda-forge/linux-64
while the same query for prophet returns:
Name Version Build Channel
──────────────────────────────────────────────────────
prophet 1.1.5 py310h56eac3b_1 conda-forge
prophet 1.1.5 py310h56eac3b_0 conda-forge/linux-64
prophet 1.1.5 py310h56eac3b_1 conda-forge/linux-64
prophet 1.1.5 py311h1fff0e1_0 conda-forge/linux-64
prophet 1.1.5 py39h5ee1178_1 conda-forge/linux-64
prophet 1.1.5 py39h5ee1178_0 conda-forge/linux-64
prophet 1.1.5 py38h214270d_1 conda-forge/linux-64
prophet 1.1.5 py38h214270d_0 conda-forge/linux-64
prophet 1.1.5 py312h4f541b2_1 conda-forge/linux-64
prophet 1.1.5 py311h1fff0e1_1 conda-forge/linux-64
prophet 1.1.4 py38h214270d_0 conda-forge/linux-64
prophet 1.1.4 py310h56eac3b_0 conda-forge/linux-64
prophet 1.1.4 py311h1fff0e1_0 conda-forge/linux-64
prophet 1.1.4 py39h5ee1178_0 conda-forge/linux-64
prophet 1.1.4 py39h3c18c91_0 pkgs/main/linux-64
(... similar results of in between versions ...)
prophet 1.1 py39hf3d152e_1 conda-forge/linux-64
prophet 1.1 py39hf3d152e_2 conda-forge/linux-64
prophet 1.0.1 py37h06a4308_0 pkgs/main/linux-64
prophet 1.0.1 py38h06a4308_0 pkgs/main/linux-64
prophet 1.0.1 py39h06a4308_0 pkgs/main/linux-64
prophet 1.0.1 py37h89c1867_1 conda-forge/linux-64
prophet 1.0.1 py37h085eea5_3 conda-forge/linux-64
prophet 1.0.1 py36hcb3619a_3 conda-forge/linux-64
prophet 1.0.1 py36h5fab9bb_5 conda-forge/linux-64
prophet 1.0.1 py36h5fab9bb_4 conda-forge/linux-64
prophet 1.0.1 py36h5fab9bb_2 conda-forge/linux-64
prophet 1.0.1 py36h5fab9bb_1 conda-forge/linux-64
prophet 1.0.1 py37h89c1867_2 conda-forge/linux-64
prophet 1.0.1 py37h89c1867_4 conda-forge/linux-64
prophet 1.0.1 py37h89c1867_5 conda-forge/linux-64
prophet 1.0.1 py38h578d9bd_1 conda-forge/linux-64
prophet 1.0.1 py38h578d9bd_2 conda-forge/linux-64
prophet 1.0.1 py38h578d9bd_4 conda-forge/linux-64
prophet 1.0.1 py38h578d9bd_5 conda-forge/linux-64
prophet 1.0.1 py38ha770c72_1 conda-forge/linux-64
prophet 1.0.1 py38hd0cf306_3 conda-forge/linux-64
prophet 1.0.1 py39hf3d152e_5 conda-forge/linux-64
python -c "from pip._internal.pep425tags import get_supported; print(get_supported()[0])"
from the terminal and post the output here. Make sure to use the desired target version of Python, e.g.py -3.7
instead ofpython
in command if needed. – Chanson