- Timestamp:
- May 1, 2018 9:08:09 AM (7 years ago)
- Branches:
- master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, unittest-saveload
- Children:
- 86d6abd
- Parents:
- c9bf97b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasview/sasview.py
rc9bf97b rf387050 207 207 # need shell=True on windows to keep console box from popping up 208 208 shell = (os.name == 'nt') 209 subprocess.check_output("cc s", shell=shell, stderr=subprocess.STDOUT)209 subprocess.check_output("cc", shell=shell, stderr=subprocess.STDOUT) 210 210 except OSError: 211 211 print("No compiler installed. Please follow installation instructions\n") 212 except subprocess.CalledProcessError:213 212 logger.error("No compiler installed. Please follow installation instructions\n") 214 213 logger.error(traceback.format_exc()) 214 except subprocess.CalledProcessError: 215 pass 215 216 216 217 def setup_sasmodels():
Note: See TracChangeset
for help on using the changeset viewer.