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 gccto 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
基础教程推荐
- 对多索引数据帧的列进行排序 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
