@@ -44,32 +44,32 @@ The BibTeX entry for the paper is:
44
44
Installation
45
45
------------
46
46
47
- The program is a Python program. Thus, a working Python distribution is required for running it. It is designed
48
- to run under Python 2.7 and Python 3 . Beside the Python interpreter it requires the following
47
+ The program is a Python program. Thus, a working Python 3.X distribution is required for running it (support for Python
48
+ 2.X has been dropped since version 1.1.8) . Beside the Python interpreter it requires the following
49
49
packages:
50
50
51
51
* numpy (see `<www.numpy.org >`_)
52
52
* scipy (see `<www.scipy.org >`_)
53
53
* h5py (see `<www.hypy.org >`_)
54
54
* pyFFTW is optional; speeds up the averaging (see `<https://pypi.python.org/pypi/pyFFTW >`_)
55
55
56
- The package is tested with Python versions 2.7 and 3.5, numpy version 1.11.0, scipy version 0.18.0, h5py version 2.6.0
57
- and version PyFFTW 0.10.4.
56
+ The package is tested with following Python versions:
57
+ * Python 3.6, numpy 1.11, scipy 0.19, h5py 2.7, PyFFTW 0.10
58
+ * Python 3.8, numpy 1.23, scipy 1.9, h5py 3.7, PyFFTW 0.13
58
59
59
- The package can be most conveniently installed using the ``pip `` package manager. Make sure you have Python installed (either 2.X
60
- or 3.X) and the ``pip3 `` program (``pip2 `` for Python 2.X) is in your path. Go to the command line and execute (if you use Python 2.7 use ``pip2 ``
61
- instead of ``pip3 ``).
60
+ The package can be most conveniently installed using the ``pip `` package manager. Make sure you have Python installed
61
+ and the Python interpreter is in your path. Go to the command line and execute:
62
62
63
63
.. code-block :: none
64
64
65
- pip3 install --upgrade holoaverage
65
+ python3 -m pip install --upgrade holoaverage
66
66
67
67
Holoaverage leverages the pyFFTW package for speed. If pyfftw can not be installed you can still use holoaverage
68
- without problems. You can install pyFFTW by (with Python 2.7 again use `` pip2 `` instead of `` pip3 ``)
68
+ without problems. You can install pyFFTW by
69
69
70
70
.. code-block :: none
71
71
72
- pip3 install --upgrade pyfftw
72
+ python3 -m pip install --upgrade pyfftw
73
73
74
74
Up to date source versions can be found on the GitHub site: https://github.com/niermann/holoaverage
75
75
@@ -88,7 +88,7 @@ License
88
88
.. code-block :: none
89
89
90
90
Holoaverage, program for reconstruction and averaging of electron holograms
91
- Copyright (C) 2018 Tore Niermann
91
+ Copyright (C) 2018-2022 Tore Niermann
92
92
93
93
This program is free software: you can redistribute it and/or modify
94
94
it under the terms of the GNU General Public License as published by
0 commit comments