About 2,200,000 results
Open links in new tab
  1. ImportError: No module named win32com.client - Stack Overflow

    I am currently using python 2.7 and trying to open an Excel sheet. When using the code below: import os from win32com.client import Dispatch xlApp = …

  2. python - ImportError: no module named win32api - Stack Overflow

    I am using Python 2.7 and I want to use pywin32-214 on Windows 7. I installed pywin32-214 by using the MSI installer. But when I import win32api in my Python script, it throws the error: no …

  3. How do I get total physical memory size using PowerShell without …

    (get-wmiobject -class "win32_physicalmemory" -namespace "root\CIMV2").Capacity This gives me the value: 8589934592 bytes So, not only is the total physical memory calculated from …

  4. ssl - How to install OpenSSL in Windows 10? - Stack Overflow

    I have a question about how and which version of OpenSSL I must install on Windows to later create certificates. I installed one version (openssl-1.0.2d-fips-2.0.10) found on SourceForge …

  5. OSError: [WinError 193] %1 is not a valid Win32 application

    That's a comment that asserts that "not a valid Win32 application" is unclear. It seems very clear to me, but perhaps that's because I'm experienced in Win32 and didn't see things from the …

  6. Where is WIN32 defined, and how can I include this definition in …

    Feb 6, 2017 · The problem is that #if defined (WIN32) fails and the compilation fails when trying to #include unistd.h which I don't want to do. I have third party project that works with this header …

  7. What is the difference between Win32 API and COM API?

    Oct 22, 2016 · COM is a technology, Win32 API is a set of functions Windows exposes for applications to use. I doubt you should be selecting a version based on whether it's COM or …

  8. Pyusb on windows - no backend available - Stack Overflow

    Mar 15, 2015 · I am using Python 2.6.5, libusb-win32-device.bin-0.1.12.1 and pyusb-1.0.0-a0 on a windows XP system and kept receiving ValueError: No backend available. Since there wasn't …

  9. next.js - Next failed to load SWC binary - Stack Overflow

    Nov 2, 2021 · If you use Docker, just add RUN npm install -D @swc/cli @swc/core to Dockerfile. Alternatively, you might want to verify that the nodejs image you're pulling has glibc support. I …

  10. What's the difference between the WIN32 and _WIN32 defines in …

    Mar 16, 2019 · 64 WIN32 is a name that you could use and even define in your own code and so might clash with Microsoft's usage. _WIN32 is a name that is reserved for the implementor (in …