在 Windows 10 上安装 fbprophet Python
Installing fbprophet Python on Windows 10
为了在 anaconda 中安装 fbprophet,我的构建在 windows 10 上一直失败,并显示以下消息:
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:\Users\bharat.c.ruparel\AppData\Local\Continuum\anaconda3\Scripts\conda.exe
给出的命令是:
conda 安装-c conda-forge fbprophet
有人在 Windows 10 上成功安装了 fbprophet 吗?如果是,请给出步骤。
谢谢。
我也尝试过 pip install 但没有成功。我有一个 Mac 并且成功地在上面安装了 fbprophet,没有任何问题。
首先在你的 Windows 机器上安装 Anaconda 或 miniconda,然后将 conda python 路径添加到 env 变量作为默认值 python.
打开命令提示符并运行执行以下命令。
创建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
安装 Ephem
conda install -c anaconda ephem
安装 fbprophet
pip install fbprophet
or
conda install -c conda-forge fbprophet
我遇到了同样的问题。但是在我按照以下步骤操作后它起作用了:
在提示安装 Ephem 时:
conda install -c anaconda ephem
安装 Pystan:
conda install -c conda-forge pystan
最后安装 Fbprophet
conda install -c conda-forge fbprophet
我遇到了同样的问题,我的解决方案是:-
使用 Python3.5
创建新环境
conda create -n pht python=3.5 anaconda
使用命令安装 Prophet。
conda install -c conda-forge fbprophet
我没有安装 'gcc',尽管在安装 Prophet 之前建议这样做。
我在 windows 10 中也遇到了在没有 conda 的情况下安装 facebook prophet 的问题。
但是,我们可以解决它。
首先,卸载任何 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
以管理员身份访问 Anaconda Prompt
您正在使用的环境:
和运行
conda install -c conda-forge fbprophet -y
我刚在这里试过(在 Windows 10 64 位上),它运行良好。
这里 Prophet's suggestion 使用 Anaconda
Use conda install gcc
to set up gcc. The easiest way to install
Prophet is through conda-forge: conda install -c conda-forge fbprophet
不安装 Conda, Win 10, Python 3.8.8 64 bit
。
pip3 install Cython
然后install:
重启你的机器
安装
pip3 install pystan==2.17.1.0
pip3 install fbprophet
这是我的解决方案。我以前没有使用过 conda-forge,所以阅读这篇文章 article 会有所帮助。
- 确保 conda ≥4.9
conda --version
- 添加 conda forge 频道
conda config --add channels conda-forge
conda --set channel_priority strict
- 安装 gcc
conda install gcc
- 安装先知
conda install -c conda-forge prophet
我这里用的是prophet documentation
2021 年最新安装代码:
pip install pystan==2.19.1.1
,然后pip install prophet
另外,安装后重启你的 jupyter notebook
为了在 anaconda 中安装 fbprophet,我的构建在 windows 10 上一直失败,并显示以下消息:
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:\Users\bharat.c.ruparel\AppData\Local\Continuum\anaconda3\Scripts\conda.exe
给出的命令是:
conda 安装-c conda-forge fbprophet
有人在 Windows 10 上成功安装了 fbprophet 吗?如果是,请给出步骤。
谢谢。 我也尝试过 pip install 但没有成功。我有一个 Mac 并且成功地在上面安装了 fbprophet,没有任何问题。
首先在你的 Windows 机器上安装 Anaconda 或 miniconda,然后将 conda python 路径添加到 env 变量作为默认值 python.
打开命令提示符并运行执行以下命令。
创建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
安装 Ephem
conda install -c anaconda ephem
安装 fbprophet
pip install fbprophet or conda install -c conda-forge fbprophet
我遇到了同样的问题。但是在我按照以下步骤操作后它起作用了:
在提示安装 Ephem 时:
conda install -c anaconda ephem
安装 Pystan:
conda install -c conda-forge pystan
最后安装 Fbprophet
conda install -c conda-forge fbprophet
我遇到了同样的问题,我的解决方案是:-
使用 Python3.5
创建新环境conda create -n pht python=3.5 anaconda
使用命令安装 Prophet。
conda install -c conda-forge fbprophet
我没有安装 'gcc',尽管在安装 Prophet 之前建议这样做。
我在 windows 10 中也遇到了在没有 conda 的情况下安装 facebook prophet 的问题。 但是,我们可以解决它。 首先,卸载任何 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
以管理员身份访问 Anaconda Prompt
您正在使用的环境:
和运行
conda install -c conda-forge fbprophet -y
我刚在这里试过(在 Windows 10 64 位上),它运行良好。
这里 Prophet's suggestion 使用 Anaconda
Use
conda install gcc
to set up gcc. The easiest way to install Prophet is through conda-forge:conda install -c conda-forge fbprophet
不安装 Conda, Win 10, Python 3.8.8 64 bit
。
pip3 install Cython
然后install:
重启你的机器
安装
pip3 install pystan==2.17.1.0
pip3 install fbprophet
这是我的解决方案。我以前没有使用过 conda-forge,所以阅读这篇文章 article 会有所帮助。
- 确保 conda ≥4.9
conda --version
- 添加 conda forge 频道
conda config --add channels conda-forge
conda --set channel_priority strict
- 安装 gcc
conda install gcc
- 安装先知
conda install -c conda-forge prophet
我这里用的是prophet documentation
2021 年最新安装代码:
pip install pystan==2.19.1.1
,然后pip install prophet
另外,安装后重启你的 jupyter notebook