Actions
Building » History » Revision 1
Revision 1/16
| Next »
Sergey Smolov, 04/17/2017 02:37 PM
Building¶
The tool building is based on the pyInstaller
Windows¶
- Install Python 2.* interpreter from here
- Install PyWin32 from here
- Get pip-Win Python package manager from here and run it.
- In the pip-Win Command field enter the following:
venv -c -i pyi-env-name
then click Run.
This creates a new virtual environment rooted at C:\Python\pyi-env-name and makes it the current environment. A new command shell window opens in which you can run commands within this environment. Enter the command:pip install PyInstaller
- Once pyInstaller is installed, start pip-Win, in the Command field enter the following:
venv pyi-env-name
then click Run.
- Go the the tool sources folder.
- Run the following command:
pyinstaller setup.py -n traceutils --add-data="LICENSE;README" -p="traceutils;traceutils\record" -d
- Go the the dist subdirectory and zip the result.
Updated by Sergey Smolov over 7 years ago · 16 revisions