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 check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- 沿轴计算直方图 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12
- padding='same' 转换为 PyTorch padding=# 2022-01-01
- 如何将一个类的函数分成多个文件? 2022-01-01