diff --git a/.gitignore b/.gitignore index 68bc17f..f6d817e 100644 --- a/.gitignore +++ b/.gitignore @@ -158,3 +158,6 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ + + +3_2_5_can_you_count/ \ No newline at end of file diff --git a/README.md b/README.md index 636dfeb..79d12df 100644 --- a/README.md +++ b/README.md @@ -20,4 +20,11 @@ pyinstaller --onefile \ --add-data assets:assets \ --add-data sounds:sounds \ main-window.py + +# Second way +pyinstaller --onefile main.py --name 3_2_5-can-you-count +cp -R assets/ dist/assets/ +cp -R sounds/ dist/sounds/ +mv dist 3_2_5_can_you_count +tar -zcvf 3_2_5_can_you_count.tar.gz 3_2_5_can_you_count/ ```