Changeset 3858
- Timestamp:
- Mar 19, 2019 9:18:53 AM (4 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASII.py
r3674 r3858 10 10 ########### SVN repository information ################### 11 11 ''' 12 *GSAS-II GUI Script*12 *GSAS-II GUI* 13 13 ===================== 14 14 15 Script to start the GSAS-II graphical user interface. This script imports GSASIIpath, 16 sets a few misc. values and then launches :func:`GSASIIdataGUI.GSASIImain`, which 17 creates a wx.Application which in turns creates the GUI. 15 This is the script to start the GSAS-II graphical user interface (GUI). 16 This script imports GSASIIpath, does some minor initialization 17 and then launches :func:`GSASIIdataGUI.GSASIImain`, 18 which creates a wx.Application that in turns creates the GUI. 19 If the GSAS-II binaries are not installed or are incompatible with 20 the OS/Python packages, the user is asked if they should be updated 21 from the subversion site. 18 22 ''' 19 23 -
trunk/GSASIIimage.py
r3857 r3858 28 28 try: 29 29 import GSASIIplot as G2plt 30 except ImportError, ModuleNotFoundError: # expected in scriptable w/o matplotlib and/or wx30 except (ImportError, ModuleNotFoundError): # expected in scriptable w/o matplotlib and/or wx 31 31 pass 32 32 import GSASIIlattice as G2lat -
trunk/docs/source/index.rst
r3857 r3858 7 7 The following documentation is intended for those wishing to code 8 8 withing the GSAS-II framework, those planning to understand how 9 GSAS-II works or for people wishing to develop scripting applications9 GSAS-II works, or for people wishing to develop scripting applications 10 10 using the API (:mod:`GSASIIscriptable`). 11 11 -
trunk/docs/source/packages.rst
r3857 r3858 1 *Required packages* 1 Required packages 2 2 ==================== 3 3 … … 5 5 well as several separately-developed packages. GSAS-II is being 6 6 developed using Python 2.7, 3.6 and 3.7. At this point we think that 7 most sections of the code have notbeen exercised in Python 2 and 3,7 most sections of the code have been exercised in Python 2 and 3, 8 8 but bugs are still expected (please report them). Our 9 9 goal is to keep the code compliant with both Python 2.7 and 3.x for … … 19 19 encourage updating from that. 20 20 21 GUI Use22 -------- 21 GUI Requirements 22 ---------------- 23 23 24 24 When using the GSAS-II graphical user interface (GUI), the following 25 25 Python extension packages are required: 26 26 27 * wxPython (http://wxpython.org/docs/api/). Note that GSAS-II has been tested with wxPython >=2.8, 3.0.x and 4.0.x27 * wxPython (http://wxpython.org/docs/api/). Note that GSAS-II has been tested with wxPython 2.8.x, 3.0.x and 4.0.x. We encourage use of 3.0 with Python 2.7 and 4.x with Python 3.x. 28 28 * NumPy (http://docs.scipy.org/doc/numpy/reference/), 29 29 * SciPy (http://docs.scipy.org/doc/scipy/reference/), … … 31 31 * PyOpenGL (http://pyopengl.sourceforge.net/documentation). Note: a copy of this is distributed with GSAS-II (at present) and will be installed if the Python setuptools package is present. 32 32 33 Several packages are used by some parts of the code, but are not33 Several packages are used in sections of the code, but are not 34 34 required. If these packages are not present, warning messages may be 35 generated whenneeded, but the vast bulk of GSAS-II will function normally.35 generated if they would be needed, but the vast bulk of GSAS-II will function normally. 36 36 37 37 * Pillow (https://pillow.readthedocs.org) or PIL (http://www.pythonware.com/products/pil/). This is used to save … … 49 49 50 50 51 Scripting Use52 --------------- 51 Scripting Requirements 52 -------------------- 53 53 54 54 When using the GSAS-II scripting interface (:mod:`GSASIIscriptable`),
Note: See TracChangeset
for help on using the changeset viewer.