Remove --icon option from pyinstaller package build command

Curtis Gedak 2019-03-08 09:43:47 -07:00
parent 67df3c803f
commit 7d273e7f09

@ -22,16 +22,6 @@ Be sure to include optional software such as Markdown and PyEnchant so that thes
- See [Run Manuskript from Source Code on Windows](https://github.com/olivierkes/manuskript/wiki/Run-Manuskript-from-Source-Code-on-Windows).
## Add Icon for Windows EXE
These steps build the icon file using Linux.
1. Open `manuskript/icons/Manuskript/ico-512px.png` in gimp.
2. Image resize to 48x48.
3. Export as ".ico" format and save as `manuskript.ico` file.
## Install Prerequisite Software Packages
Install all the necessary software required for creating the manuskript package.
@ -49,15 +39,13 @@ Create a zip file package that can be installed and run on Windows 32 bit and 64
1. Create the Manuskript package.
cd manuskript
C:\Python34\Scripts\pyinstaller --icon=manuskript.ico manuskript.spec
C:\Python34\Scripts\pyinstaller manuskript.spec
This should create a `build` directory and a `dist` directory under the current working directory.
The `dist` directory contains the self-contained manuskript folder.
The log file with the warnings and erros is at `build\manuskript\warnmanuskript.txt`.
**NOTE: The icon does not appear to be applied to the manuskript.exe file**
The log file with the warnings and errors is at `build\manuskript\warnmanuskript.txt`.
2. Create a zip file using the manuskript files under the `dist` directory.