我试图在Ubuntuforpython3.6上安装pywin32模块,我尝试了pip3 install pywin32并获得了以下输出:
Collecting pywin32
Could not find a version that satisfies the requirement pywin32 (from versions: )
No matching distribution found for pywin32然后我尝试了pip3 install pypiwin32并得到了以下输出:
Collecting pypiwin32
Using cached https://files.pythonhosted.org/packages/d0/1b/2f292bbd742e369a100c91faa0483172cd91a1a422a6692055ac920946c5/pypiwin32-223-py3-none-any.whl
Collecting pywin32>=223 (from pypiwin32)
Could not find a version that satisfies the requirement pywin32>=223 (from pypiwin32) (from versions: )
No matching distribution found for pywin32>=223 (from pypiwin32)发布于 2020-10-28 18:28:59
pywin32和pypiwin32是“Pythonwin扩展为Microsoft提供了对大部分Win32 API、创建和使用COM对象的能力以及Pythonwin环境的访问。”
一个受支持的操作系统是Microsoft,因为您只能从Win32访问Windows。
https://stackoverflow.com/questions/64579002
复制相似问题