-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
77 lines (53 loc) · 2.04 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
README file for h5py version 2.1.2
==================================
Websites
--------
* Main website: http://www.h5py.org
* Source code: http://github.com/h5py/h5py
* Mailing list: h5py at googlegroups
Prerequisites
-------------
You need, at a minimum:
* HDF5 1.8.3 or later on Linux (On Windows, h5py ships with HDF5)
* Python 2.6, 2.7 or 3.2
* Any modern version of NumPy
Optionally:
* Cython 0.13 or later, to build from a git checkout
* If using Python 2.6, unittest2 is needed to run the tests
Installing from tarball
-----------------------
Run the following commands:
* python setup.py build [--hdf5=/path/to/hdf5]
* python setup.py test # optional
* [sudo] python setup.py install
Installing via easy_install
---------------------------
Run the following commands:
* export HDF5_DIR=/path/to/hdf5 # optional
* [sudo] easy_install h5py
Building from a Git checkout (UNIX)
-----------------------------------------
We have switched development to GitHub. Here's how to build
h5py from source:
* Clone the project:
$ git clone https://github.com/h5py/h5py.git
* Generate the Cython files which talk to HDF5:
$ cd h5py/h5py
$ python api_gen.py
* Build the project (this step also auto-compiles the .c files)
$ cd ..
$ python setup.py build [--hdf5=/path/to/hdf5]
* Run the unit tests (optional)
$ python setup.py test
Reporting bugs
--------------
* Bug reports are always welcome at the GitHub tracker. Please don't be
offended if it takes a while to respond to your report... we value user
input and take all bugs seriously.
* If you're not sure you have a bug, or want to ask any question at all
about h5py or HDF5, post to the mailing list (h5py at Google Groups).
This list is read by the main developers of h5py, as well as the user
community. As a bonus, posting to the list means that other people with
similar problems can find your question and the responses.
* You're always free to email the author directly at [andrew dot collette
at gmail dot com].