I am currently building a desktop app and recently noticed that there are issues with importing modules on Win 10.
For example, running the following on Win 7 without python installed works:
import win32con
But running it on a Win 10 machine without python installed yields:
No module named 'win32con'
This is just an example; there are many other modules which throw an ImportError when ran on Win10 but work on Win7, both without Python installed
Of course, running pip install on Win10 installs the module, but my goal is to have the app run on Win10 without having Python installed to run pip install.
Any idea why this happens and how to fix it?