I have built a very small and simple image resizer app in Python. It resizes multiple images at once and it works perfectly when my anti-virus software – AVG Free – is turned off. However, when it’s turned on, it detects the virus Win64:Evo-gen [Trj]
in the .exe
file. I have read multiple places online that this is a false positive.
How can I get rid of the false positive in order to make the .exe
file accessible on all PCs?
I used this line to create the .exe file: pyinstaller --windowed --icon=favicon.ico Resizer.py
1