-2

Trying to install fb prophet but it takes so long, it has been running for both vscode editor for almost an hour

conda install -c conda-forge prophet
Romain
  • 19,910
  • 6
  • 56
  • 65

1 Answers1

1

Try a new environment:

conda create -n prophet -c conda-forge prophet

or, if insisting on current environment, use Mamba

conda install -n base -c conda-forge mamba
mamba install -c conda-forge prophet
merv
  • 67,214
  • 13
  • 180
  • 245