python安装prophet&pywt

安装fbprophet
conda install -c conda-forge fbprophetconda install fbprophet之间的区别在于软件包的来源和安装渠道。

  1. conda install -c conda-forge fbprophet:这个命令指定了conda-forge渠道作为安装fbprophet的来源。conda-forge是一个社区维护的开放源代码软件包集合,提供了许多常用的软件包。使用-c参数指定conda-forge渠道后,conda将从该渠道中查找并安装fbprophet及其依赖项。

  2. conda install fbprophet:这个命令没有指定特定的渠道,因此conda将从默认的渠道中查找并安装fbprophet。默认情况下,conda会首先查找并安装Anaconda仓库中的软件包。

    只是后来还是没有安装成功,后来转而安装prophet

安装prophet

复制代码
1.pip install pystan
如果要速度,也可以加上镜像源
pip install pystan -i https://pypi.tuna.tsinghua.edu.cn/simple
2.import pystan试一下,是否成功
3.pip install prophet -i https://pypi.tuna.tsinghua.edu.cn/simple

嗯,还是不成功,说是缺少c++编译环境。

去官网下载了VisualStudioSetup 安装了一下

https://visualstudio.microsoft.com/downloads/

最后不知是哪个起作用了,,

最终可以了

python中pywt库安装

不要直接pip install pywt而是:

复制代码
pip install PyWavelets
或者
conda install PyWavelets
相关推荐
cup1121 小时前
[技术复盘] Windows Python 打包实战:Nuitka 环境踩坑总结与 CI 自动化构建全指南
python·ai·环境变量·ci·nuitka·skill
aqi001 天前
15天学会AI应用开发(七)有了大模型为什么还要引入RAG
人工智能·python·大模型·ai编程·ai应用
金銀銅鐵1 天前
用 Python 实现 Take-Away 游戏
python·游戏
copyer_xyf1 天前
Agent 流程编排
后端·python·agent
copyer_xyf1 天前
Agent RAG
后端·python·agent
copyer_xyf1 天前
【RAG】向量数据库:milvus
后端·python·agent
copyer_xyf1 天前
Agent 记忆管理
后端·python·agent
星云穿梭2 天前
用Python写一个带图形界面的学生管理系统——完整教程
python
金銀銅鐵2 天前
用 Pygame 实现 15 puzzle
python·数学·游戏