|
| 1 | +Installation instructions for diffpy.srmise |
| 2 | + |
| 3 | +Linux, Unix, and Mac |
| 4 | +==================== |
| 5 | +Given a downloaded source distribution, simply expand the file and run |
| 6 | +setup.py install |
| 7 | + |
| 8 | +Other installation options are possible via easy_install (part of the |
| 9 | +setuptools package) or pip. These are available at the given URLs. |
| 10 | +http://pypi.python.org/pypi/setuptools |
| 11 | +http://pypi.python.org/pypi/pip |
| 12 | + |
| 13 | +In addition, pip may be quickly installed by running the following |
| 14 | +bootstrap script. |
| 15 | +https://bootstrap.pypa.io/get-pip.py |
| 16 | + |
| 17 | +Installation from a downloaded source distribution is then |
| 18 | +easy_install diffpy.srmise-version.tar.gz |
| 19 | +or |
| 20 | +pip install diffpy.srmise-version.tar.gz |
| 21 | + |
| 22 | +More powerfully, these allow installation from the PyPI package database. |
| 23 | +easy_install diffpy.srmise |
| 24 | +or |
| 25 | +pip install diffpy.srmise |
| 26 | + |
| 27 | +See the documentation for easy_install or pip for additional options. |
| 28 | + |
| 29 | +Installation on Windows |
| 30 | +======================= |
| 31 | +Although diffpy.srmise is pure Python, its dependencies are not. Windows |
| 32 | +users are strongly encouraged to install an appropriate binary distribution |
| 33 | + for NumPy, SciPy, and matplotlib before installing diffpy.srmise. |
| 34 | +NumPy - http://www.numpy.org/ |
| 35 | +SciPy - http://www.scipy.org/ |
| 36 | +matplotlib - http://www.matplotlib.org/ |
| 37 | + |
| 38 | +Unfortunately, a Windows binary of diffpy.pdfgui compatible with diffpy.srmise |
| 39 | +is not available. Fortunately, diffpy.srmise relies only on Python components |
| 40 | +of diffpy.pdfgui, so even an incomplete installation is sufficient. Simply\ |
| 41 | +attempt to install diffpy.pdfgui from source or PyPI. Even though elements |
| 42 | +will fail to compile, the Python sources should still be copied to your |
| 43 | +Python installation's site-packages directory and therefore be available to |
| 44 | +diffpy.srmise. |
| 45 | + |
| 46 | +It is also possible to compile a Windows version of diffpy.pdfgui. The |
| 47 | +instructions below assume you have installed Python from Windows binaries, |
| 48 | +and that the Windows Path environment variable gives access to python.exe and |
| 49 | +Python scripts. (This is the default for most Windows installations of |
| 50 | +Python.) |
| 51 | +1) Install an appropriate wxpython binary. |
| 52 | + http://www.wxpython.org |
| 53 | +2) Install Visual Studio Express 2008. |
| 54 | + http://go.microsoft.com/?linkid=7729279 |
| 55 | +3) Download VSE 2008 compatible port of GNU Scientific Library (GSL) by David |
| 56 | + Geldreich. |
| 57 | + http://david.geldreich.free.fr/dev.html |
| 58 | +4) Build GSL headers and libraries in VSE 2008. (See the documentation for the |
| 59 | + VSE 2008 compatible GSL project.) Make sure this is not a debug build, and |
| 60 | + note the directory where these are created. |
| 61 | +5) Copy the Windows ports of getopt.h, stdint.h, and unistd.h to some |
| 62 | + directory the compiler will check. It may be simplest to create a new |
| 63 | + directory with these three files and temporarily add it to the Windows |
| 64 | + $PATH. This step is necessary to compile diffpy.pdfgui's PyCifRW |
| 65 | + dependency. |
| 66 | +6) Open a command window. (This may need to be an elevated window on some |
| 67 | + systems.) |
| 68 | +7) In the command window, set environment variable CL. |
| 69 | + SET CL=/I"gsl_include_directory" |
| 70 | + where "gsl_include_directory" is the directory with the header files. |
| 71 | + For example, if error.h is located at C:\mypath\include\gsl\error.h, then |
| 72 | + "gsl_include_directory" is "C:\mypath\include". |
| 73 | +8) In the command window, set environment variable LINK. |
| 74 | + SET LINK=/LIBPATH:"gsl_lib_directory" |
| 75 | + where gsl_lib_directory is the directory containing the GSL library you |
| 76 | + built. This file must be named "gsl.lib" if it is not already. |
| 77 | +9) Install diffpy.pdfgui within this command window. Using easy_install or |
| 78 | + pip is highly recommended since they will automatically compile and link |
| 79 | + everything else that is needed. Thus, |
| 80 | + easy_install diffpy.pdfgui |
| 81 | + or |
| 82 | + pip install diffpy.pdfgui |
| 83 | +10) Install diffpy.srmise as outlined at start of the document. |
| 84 | + |
| 85 | +At the time of writing using non-Microsoft compilers (such as gcc with MinGW) |
| 86 | +is not successful due to naming conflicts in libraries from the other |
| 87 | +binaries. If you compiled Python for Windows yourself, use the same compiler |
| 88 | +for diffpy.srmise's dependencies. |
0 commit comments