1.安装Anaconda+PyCharm
Python安装前必须知道的三个概念_哔哩哔哩_bilibili
2.创建HDDM环境
HDDM介绍以及问题汇总 (qq.com)
注意每个安装包的版本,默认路径为C:\Users\lly
2.1创建python 3.8虚拟环境
安装Anaconda并创建python3.8虚拟环境_anaconda python3.8-CSDN博客
安装到C:\Users\lly\test文件下
conda create --prefix=test python=3.8
激活C:\Users\lly\test路径
activate C:\Users\lly\test
2.2安装numpy 1.21.6
Python的Numpy库下载与安装(超详细教程)_numpy下载-CSDN博客
numpy的whl安装包链接下载到C:\Users\lly\test\Scripts中 numpy · PyPI
安装语句:
pip install C:\Users\lly\test\Scripts\numpy-1.21.6-cp38-cp38-win_amd64.whl
2.3安装pymc 2.3.8
whl安装包下载到C:\Users\lly\test\Scripts中,下面这个链接需要花钱
[python][whl]pymc所有版本下载地址汇总_pymc3库下载-CSDN博客
其他链接(我没用这个)
安装语句:
pip install C:\Users\lly\test\Scripts\pymc-2.3.8-cp38-cp38-win_amd64.whl
检查是否安装成功
pip list | findstr pymc
出现 pymc 2.3.8 即为成功
2.4安装kabuki 0.6.5
注:安装的时候关掉梯子
whl安装包下载到C:\Users\lly\test\Scripts中
安装语句
pip install C:\Users\lly\test\Scripts\kabuki-0.6.5-py3-none-any.whl
检查是否安装成功
pip list | findstr kabuki
2.5安装HDDM 0.8.0
注:安装的时候关掉梯子
whl安装包下载到C:\Users\lly\test\Scripts中,下面这个链接需要花钱
安装语句
pip install C:\Users\lly\test\Scripts\HDDM-0.8.0-cp38-cp38-win_amd64.whl
检查是否安装成功
pip list | findstr HDDM