我的构建在Windows 10上始终无法通过以下消息在anaconda中安装fbprophet:
/interestingblogpost
给出的命令是:
conda install -c conda-forge fbprophet
有人在Windows 10上成功安装了fbprophet吗?如果是,请给出步骤。
谢谢。 我也尝试了pip安装,但是没有运气。我有一台Mac,并设法在其上安装了fbprophet,没有任何问题。
答案 0 :(得分:2)
我还面临在没有conda的Windows 10中安装Facebook先知的问题。 但是,我们可以解决它。 首先,卸载所有pystan,fbprophet。 然后按照以下步骤操作,
python.exe -m pip install pystan==2.17.1.0
python.exe -m pip install fbprophet==0.6
python.exe -m pip install --upgrade fbprophet
谢谢, tsj
答案 1 :(得分:1)
1)首先在Windows机器上安装Anaconda或miniconda,并将conda python路径添加到env变量作为默认python。
2)打开命令提示符并运行以下命令。
创建一个conda虚拟环境(可选)
conda create -n v-env python=3.7
activate v-env
安装c ++编译器
conda install libpython m2w64-toolchain -c msys2
libpython将在PYTHONPATH \ Lib \ distutils中自动为您创建和设置distutils.cfg文件,但是如果失败,请按照以下说明手动进行设置
使用文本编辑器(例如记事本,notepad ++)创建distutils.cfg,并将以下行添加到该文件中。
[build]
compiler=mingw32
安装依赖项
conda install numpy cython -c conda-forge
conda install matplotlib scipy pandas -c conda-forge
安装PyStan
pip install pystan
or
conda install pystan -c conda-forge
安装fbprophet
pip install fbprophet
or
conda install -c conda-forge fbprophet
答案 2 :(得分:1)
以管理员身份访问Anaconda Prompt
您正在使用的环境:
然后运行
conda install -c conda-forge fbprophet -y
我刚刚在这里尝试过(在Windows 10 64位系统上),并且工作正常。
这是Prophet's suggestion在使用Anaconda
使用
conda install gcc
设置gcc。最简单的安装方式 先知通过conda-forge:conda install -c conda-forge fbprophet
答案 3 :(得分:0)
我遇到了同样的问题。但是在我按照以下步骤操作后,它会起作用:
在提示符下安装Ephem:
conda install -c anaconda ephem
安装Pystan:
conda install -c conda-forge pystan
最后安装Fbprophet
conda install -c conda-forge fbprophet
答案 4 :(得分:0)
我遇到了同样的问题,我的解决方法是:-
使用Python3.5创建新环境
conda create -n pht python=3.5 anaconda
使用命令安装先知。
conda install -c conda-forge fbprophet
我没有安装'gcc',尽管在安装Prophet之前建议这样做。
答案 5 :(得分:0)
不带 Conda, Win 10, Python 3.8.8 64 bit
安装。
pip3 install Cython
然后install:
重启你的机器
安装
pip3 install pystan==2.17.1.0
pip3 install fbprophet