Skip to content

Commit 6337da6

Browse files
authored
Update README.md
1 parent 96a2948 commit 6337da6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pyinstaller -F -i "mylogo.ico" myprogram.py
3737
* ( mylogo.ico = icon file name, myprogram.py = Python file name )
3838

3939

40-
* If you want your executable application with no console running **(--noconsole command)** behind your application then go with the below line.
40+
* If you want your executable application in one file **(--onefile command)** and no console running **(--noconsole command)** behind your application then go with the below line.
4141

4242
```
4343
@@ -49,7 +49,7 @@ pyinstaller -F -i "mylogo.ico" myprogram.py --onefile --noconsole
4949

5050
```
5151
52-
pyinstaller -F -i "mylogo.ico"--add-data "Additionalimage.png;." myprogram.py --noconsole
52+
pyinstaller -F -i "mylogo.ico"--add-data "Additionalimage.png;." myprogram.py --onefile --noconsole
5353
5454
```
5555
**4.** Go to **dist** folder and get application file, delete remain file except for resources.</br>

0 commit comments

Comments
 (0)