From 9fdeccd9be499ee70222fbb1a2626858a530b5df Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Fri, 12 Apr 2019 15:17:08 -0400 Subject: [PATCH] Document pywin32 package installation and onefile package --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 7ed3098..f65a35d 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,25 @@ To build a standalone executable: ``` $ pip install pyinstaller +``` + +On Windows, also install *pywin32*: + +``` +$ pip install pywin32 +``` + +Then package as a directory: + +``` $ pyinstaller build/glance-vessels.spec + +``` + +Or as a single file: + +``` +$ pyinstaller build/glance-vessels-onefile.spec ``` Running