博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解析HDF文件
阅读量:6603 次
发布时间:2019-06-24

本文共 2128 字,大约阅读时间需要 7 分钟。

hot3.png

1.系统环境

centos-6.4 Python2.6

2.安装步骤

    1.检查Python版本

    2.安装setuptools

    原因:

    安装pip时没有setuptools会显示无法安装

    步骤:

    下载安装包

 http://zhongwei-leg.iteye.com/blog/813753 sh setuptools-0.6c11-py2.6.egg

3.安装pip

 3.1下载

wget "https://pypi.python.org/packages/source/p/pip/pip-1.5.4.tar.gz#md5=834b2904f92d46aaa333267fb1c922bb" --no-check-certifica

 3.2 pip安装

tar -xzvf pip-1.5.4.tar.gzcd pip-1.5.4python setup.py install

 3.3修改pip镜像为国内镜像

cd /root/.pip/vim pip.conf[global]index-url=http://pypi.v2ex.com/simple

注意为了防止以后安装出问题建议检测一下编译环境

  yum install gcc*  make*

4.安装numpy

报错如下:

103040_DEhD_1464648.png

解决:yum install python-devel

pip install numpy再次 pip install numpy

103113_DBOo_1464648.png

5.安装hdf5

  5.1下载

   https://github.com/live-clones/hdf5

  5.2安装

https://github.com/live-clones/hdf5/blob/master/release_docs/INSTALL

Quick installationFor those who don't like to read ;-) the following steps can be usedto configure, build, test, and install the HDF5 Library, header files,and support programs. For example, to install HDF5 version X.Y.Z atlocation /usr/localf5, use the following steps.

$ gunzip < hdf5-X.Y.Z.tar.gz | tar xf -$ cd hdf5-X.Y.Z$ ./configure --prefix=/usr/localf5 <more configure_flags>$ make$ make check # run test suite.$ make install$ make check-install # verify installation.
Some versions of the tar command support the -z option. In such cases,the first step above can be simplified to the following:
$ tar zxf hdf5-X.Y.Z.tar.gz

6.安装pytsbles

pip install tables

103145_TnNH_1464648.png

这个报错是因为没有安装numexpr造成的

解决: pip  install numexpr

103303_4GPC_1464648.png

同理:pip install Cython

103332_Kthn_1464648.png
解决:vi /root/.bash_prefile

export HDF5_DIR=/usr/localf5   该目录是安装hdf5时./configure --prefix所指定到目录source /root/.bash_profilepip install tables  //安装成功可能会出错>>> import tablesTraceback (most recent call last):  File "
", line 1, in 
  File "/usr/lib64/python2.6/site-packages/tables/__init__.py", line 82, in 
    from tables.utilsextension import (ImportError: libhdf5.so.6: cannot open shared object file: No such file or directory解决方案vi /root/.bash_prefileexport LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/hdf5/lib/

7.安装pandas

pip install pandas

103404_3omd_1464648.png 

安装成功!

HDF文件详解

转载于:https://my.oschina.net/zhangxc73912/blog/397209

你可能感兴趣的文章
20分钟 看图手写的table
查看>>
WPF 内存泄漏优化经历
查看>>
双十一加量不减速,心怡科技云效应显现
查看>>
ASP.NET Core 基础教程总结 - ASP.NET Core 基础教程 - 简单教程,简单编程
查看>>
程序员面试时应该注意哪些问题?
查看>>
作为面试官,我是怎么快速判断程序员能力的?
查看>>
切图技巧
查看>>
5.1基于JWT的认证和授权「深入浅出ASP.NET Core系列」
查看>>
express 管理本地的静态资源
查看>>
vue-element-admin 4.0.0 beta 发布,后台集成方案
查看>>
Jenkins 自动构建 并发布
查看>>
ios 实现在一个APP中调起另一个APP(demo)
查看>>
区块链开发公司普及区块链技术的基础知识
查看>>
美拍新M计划上线,全面扶持内容生产者生态
查看>>
为Gradle设置镜像,解决jcenter依赖无法下载或者下载过慢问题
查看>>
pyhton list和str比较
查看>>
Node.js中spawn与exec的异同比较
查看>>
MySQL定时备份数据库(全库备份)
查看>>
图形数据库公司 Neo4j 获得 E 轮 8000 万美元融资
查看>>
MariaDB CEO 痛斥云厂商对开源的无尽掠夺,从不回馈社区
查看>>