@@ -45,13 +45,14 @@ branch.
45
45
Supplied Binary Files
46
46
---------------------------
47
47
48
- The GSAS-II binaries are supplied on GitHub as "release" files,
48
+ The GSAS-II binaries are supplied on GitHub as "release" files, in
49
49
https://github.com/AdvancedPhotonSource/GSAS-II-buildtools/releases/latest. In
50
- that location, the files are in tar archives named `prefix_pX.X_nY.Y.tgz `
51
-
52
- The supplied binaries are placed in a subdirectory name with name
50
+ that location, the files are in tar archives named as
53
51
`prefix `\ _p\ `X.X `\ _n\ `Y.Y ` where
54
- `prefix ` is noted below and `X.X ` is the Python version and `Y.Y ` is the numpy
52
+ `prefix ` is noted below and `X.X ` is the Python version and `Y.Y ` is
53
+ the numpy version:
54
+
55
+ Prefix naming:
55
56
56
57
* Windows-10: 64-bit Intel-compatible processors. [Prefix `win_64_ `\ ]
57
58
* MacOS: Intel processors. [Prefix `mac_64_ `\ ]
@@ -70,7 +71,7 @@ Compiling with meson for Linux/MacOS
70
71
Compiling GSAS-II binaries is quite simple on Linux and MacOS and a
71
72
bit more complex on Windows.
72
73
One needs to install the
73
- Python meson and cython packages and a C compiler and the Gfortran
74
+ Python meson and cython packages and a C compiler and the GFortran
74
75
compiler.
75
76
76
77
On Linux it probably best to use compilers supplied with the
@@ -94,29 +95,29 @@ steps (1) and (3), below. In that case use command::
94
95
95
96
source .../g2full/bin/activate
96
97
97
- to activate Python/conda, where `.../g2full` is the location where gsas2full was
98
- installed. And in place of step (3) use command::
98
+ to activate Python/conda, where `.../g2full ` is the location where gsas2full was
99
+ installed. And in place of step (3) use command::
99
100
100
101
cd .../g2full/GSAS-II
101
102
102
- where again `.../g2full` is the location where gsas2full was installed.
103
+ where again `.../g2full ` is the location where gsas2full was installed.
103
104
104
- 1. Install an initial, bare-bones Python environment can be installed
105
+ (1) Install an initial, bare-bones Python environment can be installed
105
106
using the miniforge installer from conda-forge at
106
107
https://github.com/conda-forge/miniforge/releases/latest. Then
107
108
activate Python/conda as instructed by the installer (or use command::
108
109
109
110
source ~/miniforge3/bin/activate
110
- where `~/miniforge3` is the location where miniforge was installed.)
111
- Then use the conda command to install the following packages to run GSAS-II:
111
+ where `~/miniforge3 ` is the location where miniforge was installed.)
112
+ Then use the conda command to install the following packages to run GSAS-II:
112
113
113
114
python, numpy, matplotlib, scipy, wxpython, pyopengl, imageio, h5py,
114
115
hdf5, pillow, requests, pycifrw, pybaselines, git, gitpython, conda
115
116
116
- (see `the GUI requirement section of the Developers manual
117
+ (see `the GUI requirement section of the Developers manual
117
118
<https://gsas-ii.readthedocs.io/en/latest/packages.html#gui-requirements> `_.)
118
119
119
- 2. Install the Python build routines and the compilers:
120
+ (2) Install the Python build routines and the compilers:
120
121
121
122
MacOS::
122
123
@@ -127,6 +128,7 @@ Linux::
127
128
sudo apt-get gcc gfortran git # or use the yum command:
128
129
yum install gcc-gfortran git
129
130
131
+ and for Linux::
130
132
conda python numpy install meson cython -c conda-forge
131
133
132
134
Note that the GSAS-II binaries will be compiled to work with a
@@ -137,26 +139,26 @@ specifying them in the conda command (such as using `python=3.13` and
137
139
`numpy=2.2 ` in place of `python ` and `numpy ` above) to match the
138
140
environment where GSAS-II will be run.
139
141
140
- 3. Download the GSAS-II sources (if not already done) and move to the directory::
142
+ (3) Download the GSAS-II sources (if not already done) and move to the directory::
141
143
142
144
cd <...> # select where you wish to install GSAS-II
143
145
git clone https://github.com/AdvancedPhotonSource/GSAS-II.git --depth 1 -b main G2
144
146
cd G2
145
147
146
- 4. Create a scratch directory to compile GSAS-II into::
148
+ (4) Create a scratch directory to compile GSAS-II into::
147
149
148
150
meson setup /tmp/GSASIIc
149
151
150
- Note that this command will fail if cython, gfortran and a c
152
+ Note that this command will fail if cython, GFortran and a c
151
153
complier is not found. If the flang compiler is found, meson will
152
154
use it, but the resulting binaries will not work properly.
153
155
154
- 5. Move to the setup directory and compile::
156
+ (5) Move to the setup directory and compile::
155
157
156
158
cd /tmp/GSASIIc
157
159
meson compile
158
160
159
- 6. There are two choices for how to install the GSAS-II binaries to
161
+ (6) There are two choices for how to install the GSAS-II binaries to
160
162
where they can be found by the software. If only one user will use
161
163
GSAS-II, use option (A), which also allows multiple GSAS-II installations to share a
162
164
single set of binaries (should a user wish to keep multiple
@@ -184,11 +186,11 @@ environment where GSAS-II will be run.
184
186
installed into `~/software/G2 ` and the binaries will be installed into
185
187
`~/software/G2/GSASII/bin `.
186
188
187
- 7. (Optional) Clean up:
189
+ (7) (Optional) Clean up:
188
190
189
191
rm -rf /tmp/GSASIIc
190
192
191
- 8. (Optional) Run Self-tests::
193
+ (8) (Optional) Run Self-tests::
192
194
193
195
conda activate base
194
196
conda install pytest
@@ -199,7 +201,7 @@ environment where GSAS-II will be run.
199
201
environment that was used if not base and `.../G2` here and below will be the
200
202
location used to install GSAS-II in step (2).
201
203
202
- 9. (Optional) Create shortcuts:
204
+ (9) (Optional) Create shortcuts:
203
205
204
206
Linux::
205
207
@@ -214,7 +216,7 @@ Compiling with meson for Windows
214
216
215
217
Compiling GSAS-II binaries is bit more complex on Windows because
216
218
separate Python environments *must * be used for compilation and
217
- running GSAS-II (it appears that inclusion of git and gfortran in the
219
+ running GSAS-II (it appears that inclusion of git and GFortran in the
218
220
same installation causes problems with accessing libraries needed by the compiler).
219
221
There are other ways potentially to install the tools
220
222
needed for compilation, but use of conda will be much simpler, but
@@ -226,12 +228,12 @@ steps (1) and (2), below. In that case, use command::
226
228
227
229
...\g2full\Scripts\activate
228
230
229
- to activate Python/conda, where `...\g2full` is the location where gsas2full was
230
- installed. And in place of step (3) use command::
231
+ to activate Python/conda, where `...\ \g2full ` is the location where gsas2full was
232
+ installed. And in place of step (3) use command::
231
233
232
234
cd ...\g2full\GSAS-II
233
235
234
- where again `...\g2full` is the location where gsas2full was installed.
236
+ where again `...\ \g2full ` is the location where gsas2full was installed.
235
237
236
238
1. Install miniforge
237
239
@@ -242,28 +244,29 @@ steps (1) and (2), below. In that case, use command::
242
244
243
245
...\miniforge3\Scripts\activate
244
246
245
- where `...\miniforge3 ` is the location where miniforge was
247
+ where `...\\ miniforge3 ` is the location where miniforge was
246
248
installed to enable the Python/conda environment. Or in the start
247
249
menu use the "Start miniforge prompt" command which does the same
248
250
thing.
249
251
250
- Use this command to install the following packages to run GSAS-II:::
252
+ Use this command to install the following packages to run GSAS-II
253
+ (note this is a very long line)::
251
254
252
255
conda install python numpy matplotlib wxpython pyopengl scipy git gitpython PyCifRW pillow conda requests hdf5 h5py imageio zarr xmltodict pybaselines seekpath pywin32 -c conda-forge -y
253
256
254
- (see `the GUI requirement section of the Developers manual
255
- <https://gsas-ii.readthedocs.io/en/latest/packages.html#gui-requirements> `_
256
- for more info.)
257
+ (see `the GUI requirement section of the Developers manual
258
+ <https://gsas-ii.readthedocs.io/en/latest/packages.html#gui-requirements> `_
259
+ for more info.)
257
260
258
261
2. Download the GSAS-II sources (if not already done) and move to the directory::
259
262
260
- cd <...> # select where you wish to install GSAS-II
261
- git clone https://github.com/AdvancedPhotonSource/GSAS-II.git --depth 1 -b main G2
262
- cd G2
263
+ cd <...> # select where you wish to install GSAS-II
264
+ git clone https://github.com/AdvancedPhotonSource/GSAS-II.git --depth 1 -b main G2
265
+ cd G2
263
266
264
267
3. Install the Python build routines and the compilers. Note that this
265
268
is done in separate environment that is located in directory
266
- `..\compile ` relative to GSAS-II::
269
+ `..\\ compile ` relative to GSAS-II::
267
270
268
271
conda create -p ..\compile meson cython gcc gfortran python numpy -c conda-forge -y
269
272
@@ -290,8 +293,8 @@ for more info.)
290
293
291
294
meson compile local-install
292
295
293
- This command will copy the compiled files to `.GSASII\bin` in the
294
- Home directory (usually `c:\Users\<your name>`), which
296
+ This command will copy the compiled files to `.GSASII\\ bin` in the
297
+ Home directory (usually `c:\\ Users\ \<your name>`), which
295
298
is appropriate for when one user will access the GSAS-II
296
299
program.
297
300
@@ -301,16 +304,16 @@ for more info.)
301
304
meson compile system-install
302
305
303
306
If the first command used was `cd software ` then GSAS-II was
304
- installed into `software\G2 ` and the binaries will be installed into
305
- `software\G2\GSASII\bin `.
307
+ installed into `software\\ G2 ` and the binaries will be installed into
308
+ `software\\ G2\\ GSASII\ \bin `.
306
309
307
310
7. Clean up::
308
311
309
312
cd ..
310
313
rmdir /s tmp
311
314
rmdir /s compile
312
315
313
- 8. Create shortcuts:
316
+ 8. Create shortcuts::
314
317
315
318
python G2\GSASII\install\makeBat.py
316
319
@@ -330,7 +333,7 @@ work only with Python 3.11 or older and only with the `master`
330
333
branch. Do not use GSAS-II will fail with Python earlier than 3.7 and may have
331
334
some errors even with Python 3.8.
332
335
333
- The compilation process requires installation of the gcc and gfortran
336
+ The compilation process requires installation of the gcc and GFortran
334
337
compilers. Others will probablu not work. Also, the Python Scons
335
338
package must be installed into Python. compilation is done with
336
339
commands::
0 commit comments