Installing fbprophet Python on Windows 10(在 Windows 10 上安装 fbprophet Python)
问题描述
我的构建在 Windows 10 上一直失败,无法在 anaconda 中安装 fbprophet,并显示以下消息:
My build keeps failing on windows 10 for installing fbprophet in anaconda with the following message:
ERROR conda.core.link:_execute(502): An error occurred while installing package 'conda-forge::automat-0.7.0-py_1'.
CondaError: Cannot link a source that does not exist. C:Usersharat.c.ruparelAppDataLocalContinuumanaconda3Scriptsconda.exe
给出的命令是:
conda install -c conda-forge fbprophet
conda install -c conda-forge fbprophet
有人在 Windows 10 上成功安装了 fbprophet 吗?如果是,请给出步骤.
Has anyone successfully installed fbprophet on Windows 10? If yes, then please give the steps.
谢谢.我也尝试了 pip install 但没有运气.我有一台 Mac 并设法在其上安装 fbprophet,没有任何问题.
Thanks. I tried pip install as well but no luck. I have a Mac and managed to install fbprophet on it without any issues.
推荐答案
以管理员身份访问 Anaconda Prompt
您正在使用的环境:
Access Anaconda Prompt
for the environment that you are working with as admin:
然后运行
conda install -c conda-forge fbprophet -y
我刚刚在这里尝试过(在 Windows 10 64 位上),它运行良好.
I just tried here (on Windows 10 64-bit) and it worked fine.
这里是 先知的建议使用 Anaconda
Here is Prophet's suggestion using Anaconda
使用 conda install gcc
来设置 gcc.最简单的安装方式Prophet 是通过 conda-forge 实现的:conda install -c conda-forge fbprophet
Use
conda install gcc
to set up gcc. The easiest way to install Prophet is through conda-forge:conda install -c conda-forge fbprophet
这篇关于在 Windows 10 上安装 fbprophet Python的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Windows 10 上安装 fbprophet Python


基础教程推荐
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01