1

I'm using Python 2.7, and pyinstaller in order to make an exe.

Everything works just fine, but the exe file's icon is the PyInstaller icon.

Is there a way to change the icon?

I found this : http://www.dreamincode.net/forums/topic/192592-making-an-exe-file-with-pyinstaller/

But don't quite understand it.

0

1 Answer 1

3

Yes, try:

pyinstaller.exe --onefile --windowed --icon=app.ico app.py

Found in this guide. A quick Google search will lead you to tons of .ico files if you need one.

Sign up to request clarification or add additional context in comments.

1 Comment

I did PyInstaller --onefile --icon=favicon.ico main.spec but it's not working

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.