问题一:安装tables依赖包失败

partitionfinder2是使用python2编写的,因此安装它的依赖包必须都是python2版本的,其中tables就是一个安装比较困难的包,在PYPI中找到tables的历史版本,tables==3.2.0适用于python2和3
解决措施:
conda activate py27
pypthon -m pip install tables==3.2.0 #依然有报错,HDF5什么的
conda install hdf5
pypthon -m pip install tables==3.2.0 #还是报错,什么python版本问题,其实是numexpr版本太高

pypthon -m pip install numexpr==2.6.2
pypthon -m pip install tables==3.2. #这次成功
问题一:验证失败,执行时,提示信息如下

解决措施: 升级tables包
pip install --user --upgrade tables

再次验证:
python PartitionFinder.py -h #成功

问题一:安装tables依赖包失败
partitionfinder2是使用python2编写的,因此安装它的依赖包必须都是python2版本的,其中tables就是一个安装比较困难的包,在PYPI中找到tables的历史版本,tables==3.2.0适用于python2和3
解决措施:
conda activate py27
pypthon -m pip install tables==3.2.0 #依然有报错,HDF5什么的
conda install hdf5
pypthon -m pip install tables==3.2.0 #还是报错,什么python版本问题,其实是numexpr版本太高
pypthon -m pip install numexpr==2.6.2
pypthon -m pip install tables==3.2. #这次成功
问题一:验证失败,执行时,提示信息如下
解决措施: 升级tables包
pip install --user --upgrade tables
再次验证:
python PartitionFinder.py -h #成功