Skip to content
Snippets Groups Projects
Commit 3733cd09 authored by tomrink's avatar tomrink
Browse files

Set a default python_path

parent 872e7ab0
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,8 @@ try: ...@@ -37,7 +37,8 @@ try:
else: else:
python_path = user_paths[0] + os.sep python_path = user_paths[0] + os.sep
if python_path is None: if python_path is None:
print('** No PYTHONPATH found containing cimss_icing/model *', file=sys.stderr) python_path = home_dir + os.sep + 'dev' + os.sep + 'python' + os.sep + 'modules' + os.sep
print('** No PYTHONPATH found containing cimss_icing/model, using: '+python_path, file=sys.stderr)
ancillary_path = python_path + 'ancillary' + os.sep ancillary_path = python_path + 'ancillary' + os.sep
model_path_day = python_path + 'tf_model_day' + os.sep model_path_day = python_path + 'tf_model_day' + os.sep
model_path_night = python_path + 'tf_model_night' + os.sep model_path_night = python_path + 'tf_model_night' + os.sep
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment