Our professor has given us the assignment of downloading and setting up... https://github.com/spyoungtech/hikvision-recover ...for a cyber security class
As stated I used pip to install from the command line. I then test to see if it was successful with pip show hikvision-recover and it is successful.
Yet, when I try to run the command on a windows shell I get a "Not recognized as an internal or external command." I'm assuming this has to do with the command not being found? But I'm not really sure where to start.
According to documentation I should just be able to
hikvision-recover <serial number> <Date information>
and it will return the recovery password.


hikvision-recoversomewhere but since Windows doesn't have a standard path to place executables, it may not be in your %PATH% and so not findable on the command line. I don't know of an easy way to find out where this directory is but you could brute force it withdir /s hikvision-recover*. Once you find that path, add it to your user PATH. It may have other useful scripts from other installs.