首页 > 其他分享 >h5py

h5py

时间:2023-11-02 13:06:17浏览次数:29  
标签:lib satisfied cp38 https h5py packages

HDF5 for Python

h5py is a thin, pythonic wrapper around the HDF5, which runs on Python 3 (3.6+).


Websites

 

pip install h5py
Collecting h5py
  Using cached h5py-2.10.0-cp38-cp38-manylinux1_x86_64.whl (2.9 MB)
Requirement already satisfied: numpy>=1.7 in /usr/local/python3/lib/python3.8/site-packages (from h5py) (1.19.1)
Requirement already satisfied: six in /usr/local/python3/lib/python3.8/site-packages (from h5py) (1.15.0)
Installing collected packages: h5py
Successfully installed h5py-2.10.0

 



标签:lib,satisfied,cp38,https,h5py,packages
From: https://blog.51cto.com/emanlee/8143870

相关文章

  • Python中的h5py介绍
    Python中的h5py介绍HDF5(HierarchicalDataFormat5)是一种用于存储和组织大量科学数据的文件格式。h5py是Python中的一个库,提供了对HDF5文件的高级封装,使得在Python中处理HDF5文件变得更加简单和高效。本文将介绍h5py的基本概念和使用方法。什么是HDF5文件?HDF5文件是一种用于存储和......
  • [Linux] Compile and Build h5py with MPI
    HowtoInstallH5PY-MPI0.Preparationlinuxsystemgccanaconda/miniconda1.Installopen-mpiGoto"https://www.open-mpi.org/software/".Downloadthelastestrelease(endedwith".tar.gz").Opentheterminalandchangedirtothed......
  • 可视化H5(h5py)文件
    与深度学习打交道的一般都遇见过后缀名为.h5的文件,它该如何打开?它是一种层级形式的、用于存储和组织大量数据的文件格式。想要直观可视化内容很简单,只需安装一个python第三方库即可pipinstallvitablesvitablesxxxx.h5执行该命后,就会弹出一个可视化页面,此时h5文件......
  • cafffe 利用h5py生成多标签h5文件并训练
    h5py生成多标签h5文件importh5pyimportnumpyasnpdefmain():f=h5py.File('train00.h5','w')f.create_dataset('data',(1200,128),dtype='f8')f.create_data......