forked from nexpy/nexusformat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
56 lines (39 loc) · 1.8 KB
/
README
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
Introduction
============
This package provides a Python API to open, create, and manipulate NeXus
data <http://www.nexusformat.org/> written in the HDF5 format. It also includes
a remote file server to allow files to be opened across a network. The
'nexusformat' package provides the underlying API for NeXpy
<http://nexpy.github.io/nexpy>, which provides a GUI interface for
visualizing and analyzing NeXus data.
The latest development version is always available from NeXpy's GitHub
repository <https://github.com/nexpy/nexusformat>.
Installing and Running
======================
Released versions of NeXpy-RO are available on PyPI. If you have the Python
Setup Tools <https://pypi.python.org/pypi/setuptools> installed, then you can
install using either::
$ pip install nexusformat
or::
$ easy_install nexusformat
The latest development versions of nexpy-api can be downloaded from the NeXpy
Git repository <https://github.com/nexpy/nexusformat>.
$ git clone http://github.com/nexpy/nexusformat.git
To install in the standard Python location:
$ cd nexusformat
$ python setup.py install
To install in an alternate location:
$ python setup.py install --prefix=/path/to/installation/dir
Prerequisites
=============
The following libraries are used by the full installation of NeXpy. There is
more details of the nature of these dependencies in the NeXpy documentation
(http://nexpy.github.io/nexpy).
h5py http://www.h5py.org/
numpy http://numpy.org
User Support
============
Consult the NeXpy documentation at http://nexpy.github.io/nexpy for details
of both the Python command-line API and how to use the NeXpy GUI.
If you discover any bugs, please submit a Github issue to
https://github.com/nexpy/nexusformat/issues, preferably with relevant tracebacks.