我一直在试图通过
pip install pystan
pip install prophet但我总是犯错误。然后,我尝试使用conda来安装先知,使用:
conda install -c conda-forge prophet但我经常会犯这样的错误
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
PackagesNotFoundError: The following packages are not available from current channels:
- prophet
Current channels:
- https://conda.anaconda.org/conda-forge/win-64
- https://conda.anaconda.org/conda-forge/noarch
- https://repo.anaconda.com/pkgs/main/win-64
- https://repo.anaconda.com/pkgs/main/noarch
- https://repo.anaconda.com/pkgs/r/win-64
- https://repo.anaconda.com/pkgs/r/noarch
- https://repo.anaconda.com/pkgs/msys2/win-64
- https://repo.anaconda.com/pkgs/msys2/noarch我能做些什么来解决这个问题?
发布于 2021-03-28 20:33:36
更新:-- Conda安装现在应该可以工作了。prophet包现在有了Conda Forge的原料。
Prophet包是在转型过程中,从Python中的名称fbprophet到文档中的OP报告(简单地说是prophet )。虽然已经在文档中更新了这一点,并且已经推出了一个PyPI版本,但是在conda-forge/staged-recipes存储库( 一揽子方案正在等待审查 )上存在大量的审查请求。
在此期间,您应该继续使用来自以前的文件的说明,即
conda install -c conda-forge fbprophet并以fbprophet的名称引用该模块。
https://stackoverflow.com/questions/66840184
复制相似问题