Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/325.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 安装pywin32(在Ubuntu上)时出错_Python_Python 3.6 - Fatal编程技术网

Python 安装pywin32(在Ubuntu上)时出错

Python 安装pywin32(在Ubuntu上)时出错,python,python-3.6,Python,Python 3.6,我正在尝试在Ubuntu for python 3.6上安装pywin32模块,我已经尝试了pip3安装pywin32,并获得了以下输出: Collecting pywin32 Could not find a version that satisfies the requirement pywin32 (from versions: ) No matching distribution found for pywin32 Collecting pypiwin32 Using

我正在尝试在Ubuntu for python 3.6上安装pywin32模块,我已经尝试了
pip3安装pywin32
,并获得了以下输出:

Collecting pywin32  
  Could not find a version that satisfies the requirement pywin32 (from versions: )
  No matching distribution found for pywin32
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)
然后我尝试了
pip3安装pypiwin32
,得到了以下输出:

Collecting pywin32  
  Could not find a version that satisfies the requirement pywin32 (from versions: )
  No matching distribution found for pywin32
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)

pywin32和pypiwin32是“Microsoft Windows的Python扩展提供了对大部分Win32 API的访问、创建和使用COM对象的能力以及Pythonwin环境。”

一个受支持的操作系统是Microsoft Windows,因为您只能从Windows访问Win32 API



来源:

谢谢你的回答。我会开始寻找替代方案。