Crash log parser

Hello,
I am having trouble using the crash log parser on a Windows machine using mbed Studio. The parser with txt, elf, and map files all reside in the same directory:

C:\Users\wjgdm\Mbed Programs\TaleGator_Project\BUILD\LPC1768\ARMC6

When I run the command script:
python crash_log_parser.py crash_log.txt TaleGator_Project.elf TaleGator_Project.map

I receive the error message below:

Traceback (most recent call last):
File “crash_log_parser.py”, line 199, in
elfhelper = ElfHelper(args.elffile, args.mapfile)
File “crash_log_parser.py”, line 36, in init
op = check_output([_NM_EXEC, _OPT, elf_file.name]).decode(‘utf-8’)
File “c:\ProgramData\Mbed Studio\mbed-studio-tools\python\lib\subprocess.py”, line 411, in check_output
**kwargs).stdout
File “c:\ProgramData\Mbed Studio\mbed-studio-tools\python\lib\subprocess.py”, line 488, in run
with Popen(*popenargs, **kwargs) as process:
File “c:\ProgramData\Mbed Studio\mbed-studio-tools\python\lib\subprocess.py”, line 800, in init
restore_signals, start_new_session)
File “c:\ProgramData\Mbed Studio\mbed-studio-tools\python\lib\subprocess.py”, line 1207, in _execute_child
startupinfo)
FileNotFoundError: [WinError 2] The system cannot find the file specified

I would appreciate any help here. I have returned to mbed after a 5-year absence. My program was written under OS2 for LPC1768 and I have been working to adapt it to the latest OS6. I am stumbling through this process and encountering a fault.

– MbedOS Fault Handler –

++ MbedOS Error Info ++
Error Status: 0x80FF013D Code: 317 Module: 255
Error Message: Fault exception
Location: 0x2DB2
Error Value: 0x10001A98
Current Thread: rtx_idle Id: 0x10001DB4 Entry: 0x9605 StackSize: 0x200 StackMem: 0x10001E80 SP: 0x10007F20
For more info, visit: mbedos-error
– MbedOS Error Info –

Thanks you in advance, Dave M.