Changeset 2087 for trunk/docs
- Timestamp:
- Dec 8, 2015 6:02:57 PM (8 years ago)
- Location:
- trunk/docs/source
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/source/imports.rst
r2068 r2087 60 60 method when ``strictExtension`` is False. 61 61 * ``formatName``: a string to be used in the menu. Should be short. 62 * ``longFormatName``: a longer string to be used to describe the format in help. 62 * ``longFormatName``: a longer string to be used to describe the 63 format in help. 64 65 Note that if an importer detects a condition which prevents its use, 66 for example because a required Python package is not present, it can 67 set the value of ``self.UseReader`` to False. Another possible use for 68 this would be an importer that requires a network connection to a 69 remote site. Setting ``self.UseReader`` to False must be done in the 70 ``__init__`` method and will prevent the 71 importer from being used or included in the expected menu. 63 72 64 73 Reader() -
trunk/docs/source/index.rst
r2027 r2087 32 32 * NumPy (http://docs.scipy.org/doc/numpy/reference/), 33 33 * SciPy (http://docs.scipy.org/doc/scipy/reference/), 34 * matplotlib (http://matplotlib.org/contents.html) 35 * PIL or Pillow (https://pillow.readthedocs.org) and 34 * matplotlib (http://matplotlib.org/contents.html) and 36 35 * PyOpenGL (http://pyopengl.sourceforge.net/documentation) 37 36 38 These packages are not distributed as part of the Python standard 37 Two packages are used by some parts of the code, but are not required: 38 * PIL (http://www.pythonware.com/products/pil/) or Pillow (https://pillow.readthedocs.org). This is used to save 39 and read certain types of images. 40 * h5py is the HDF5 support package. This is (not surprisingly) required 41 to import images from HDF5 files. If this library is not present, 42 the HDF5 importer(s) will not appear in the import menu and a 43 warning message appears on GSAS-II startup. 44 45 Note that the packages listed above are not distributed as part of the Python standard 39 46 library and must be obtained separately (or in a bundled Python 40 package such as the Enthought Python Distribution/Canopy or 41 Continuum.io's anaconda). The PyOpenGL package will be installed into 47 package such as the Enthought Inc.'s Canopy or 48 Continuum.io's anaconda; we also use the older Enthought Python 49 Distribution). 50 One exception is the PyOpenGL package. This will be installed into 42 51 Python by GSAS-II if not found, so it does not need to be included in 43 52 the Python bundle, but the setuptools package
Note: See TracChangeset
for help on using the changeset viewer.