I am trying to make an executable with pyinstaller, by issuing something like this:
pyinstaller -F --add-binary="sometool.exe:." myapp.py
The build works fine. But, if I try to do something like:
os.popen('sometool.exe')
, the error is that was not found.
So, how can I do that?