安装 CPU 版本 GluonTS 过程记录 踩坑
Posted 叶庭云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装 CPU 版本 GluonTS 过程记录 踩坑相关的知识,希望对你有一定的参考价值。
Anaconda新建一个干净的虚拟环境
# 删除指定虚拟环境
conda remove -n GluonTS --all
conda create -n GluonTS python=3.7
conda activate GluonTS
个人在安装过程中发现,最好不要用国内源装mxnet、gluonts,老容易出问题,版本不兼容什么的。
pip install mxnet==1.7
pip install gluonts==0.8.1
安装 jupyter 和扩展,为了在 jupyter notebook 中能切换指定Kernel。你用 Pycharm 的话,解释器换到指定的虚拟环境,会自动导入这个环境的所有库。
# 安装jupyter和扩展 为了在jupyter notebook中能切换指定Kernel
conda install jupyter
conda install nb_conda
pip install --upgrade jupyter_client
参考了:
- python3.7中Gluonts与Mxnet安装问题
- GluonTS 官方文档
- GluonTS - Probabilistic Time Series Modeling in Python
- https://www.cnblogs.com/somedayLi/p/12354460.html
- https://blog.csdn.net/Yumesann/article/details/122867836
- https://blog.csdn.net/weixin_46969441/article/details/121333036
以上是关于安装 CPU 版本 GluonTS 过程记录 踩坑的主要内容,如果未能解决你的问题,请参考以下文章