[python-win32] How to install pywin32 for Text only/TTY, excluding all GUI components
Tim Roberts
timr at probo.com
Wed May 27 00:09:05 EDT 2020
On May 26, 2020, at 6:29 AM, Vernon D. Cole <vernondcole at gmail.com> wrote:
>
> I don't understand. If I include pywin32 as a pip requirement, then I get the whole thing, I think. How can I "ship a package" without carrying the unneeded parts around?
I am under the impression that most people shipping Windows Python applications do so using something like Pyinstaller or Py2Exe, which packages up something that looks to the end user like a single executable, but which actually contains a zip file with the necessary modules and DLLs. The zip file only contains the parts of pywin32 that are actually required by the application.
If you’re shipping your application via pip on WIndows, then virtually everyone will already have pywin32. It is a critical component.
—
Tim Roberts, timr at probo.com
Providenza & Boekelheide, Inc.
More information about the python-win32
mailing list