5 | | To help with compiling the programs, use the python scons routine inside the GSASII\fsource directory. If you are lucky, this routine will find the needed compiler and python program, set all options correctly for you and run all steps needed to prepare the .pyd files. This is done by |
| 5 | Probably the easiest way to do this is with the Anaconda Python distribution, which allows a compiler and scons to be installed in a single step: |
| 6 | |
| 7 | {{{ |
| 8 | conda install scons numpy m2w64-gcc-fortran |
| 9 | }}} |
| 10 | |
| 11 | You may want to specify a particular numpy version using |
| 12 | |
| 13 | {{{ |
| 14 | conda install scons numpy=1.17 m2w64-gcc-fortran |
| 15 | }}} |
| 16 | |
| 17 | |
| 18 | To help with compiling the programs, use the Python scons routine inside the GSASII\fsource directory. If you are lucky, this routine will find the needed compiler and python program, set all options correctly for you and run all steps needed to prepare the .pyd files. This is done by |
| 19 | |