05-08-2020, 01:33 PM
It seems that there might be an issues with the install script in line 568 when running Python2 (I am guessing you are still running Python2):
tactic_base_dir = input("(%s) -> " % default_base_dir)
The command "raw_input" was changed in Python 3 to "input", but I am not sure "input" in Python 2 seems to mean something different. From the docs, it appears that input does an "eval" on the inputted string (Python 3 does not). This seems to produce an error if the input is an empty string.
Without a code change, you could just type "None" and it should pass through.
tactic_base_dir = input("(%s) -> " % default_base_dir)
The command "raw_input" was changed in Python 3 to "input", but I am not sure "input" in Python 2 seems to mean something different. From the docs, it appears that input does an "eval" on the inputted string (Python 3 does not). This seems to produce an error if the input is an empty string.
Without a code change, you could just type "None" and it should pass through.