window 安装 PyStan 和 prophet

必须先安装conda或者miniconda ,然后Anaconda Prompt 中操作以下命令

conda install libpython m2w64-toolchain -c msys2

以下根据情况操作

然后 E:\ProgramData\Miniconda3\Lib\distutils中创建distutils.cfg文件

添加以下内容

[build]
compiler=mingw32

具体参考文档

conda install numpy cython -c conda-forge
conda install matplotlib scipy pandas -c conda-forge
pip install pystan
conda install pystan -c conda-forge

上面没有安装成功
遇到报错UnavailableInvalidChannel: The channel is not accessible or is invalid.

按照下面的成功了

1、首先创建一个干净的conda环境
2、为了保证没有之前的损坏包可以:conda clean --packages --tarballs, 这一步也可以放到中途下载包下一半错误重来使用。
3、最重要的!全部替换成国内源

conda config --add channels
https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config
–add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ conda config
–add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud//pytorch/ conda
config --add channels
https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --set show_channel_urls yes

conda install pystan
conda install prophet

猜你喜欢

转载自blog.csdn.net/weixin_44831720/article/details/125046593
今日推荐