You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
308 B
14 lines
308 B
9 years ago
|
import os
|
||
|
from expertmm import *
|
||
|
|
||
|
python_exe_path = "python"
|
||
|
|
||
|
if os_name=="windows":
|
||
|
try:
|
||
|
alt_path = "C:\\python27\python.exe"
|
||
|
if os.path.isfile(alt_path):
|
||
|
python_exe_path = alt_path
|
||
|
#else may be in path--assume installer worked
|
||
|
except:
|
||
|
pass # do nothing
|