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.
13 lines
281 B
13 lines
281 B
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
|
|
|