Changeset 2903 for trunk/GSASIIpath.py
- Timestamp:
- Jul 4, 2017 10:01:21 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIpath.py
r2902 r2903 447 447 bits = '32' 448 448 449 # if np.__version__ is not defined we must be in Read The Docs450 if not hasattr(np,'__version_'): return451 452 449 # format current python & numpy versions 453 450 pyver = 'p{}.{}'.format(*sys.version_info[0:2]) … … 630 627 else: # try loading them 631 628 print('Attempting to download GSAS-II binary files...') 632 binpath = DownloadG2Binaries(g2home) 629 try: 630 binpath = DownloadG2Binaries(g2home) 631 except AttributeError: 632 print('Problem with download') 633 633 if TestSPG(binpath): 634 634 print('GSAS-II binary directory: {}'.format(binpath))
Note: See TracChangeset
for help on using the changeset viewer.