errors like this if you use windows :
Exception has occurred: FileNotFoundError
[WinError 2] The system cannot find the file specified
File "path\ShitCrypt\main.py", line 30, in <module>
call(["gcc", "-o", "keygen", "key/keygen.c", "-lgcrypt"])
This error is because you don't have the C libraries installed and the keygen or encrypt file run under errors.
call(["gcc", "-o", "keygen", "key/keygen.c", "-lgcrypt"])
call(["gcc", "-o", "encrypt", "key/encrypt.c", "-lgcrypt"])
call("key/keygen")
- Understand more By reading some threads or this or also this
errors like this if you use windows :
This error is because you don't have the C libraries installed and the keygen or encrypt file run under errors.