我已经在64位Windows计算机上安装了Python 2.7.10。当我尝试通过pip
命令安装pywinauto时,它会以绿色显示一些警告。
然后,我尝试下载(pywinauto 0.5.4)并运行了命令,但显示错误:Could not find suitable distribution for Requirement.parse('pypiwin32')
。
我还通过https://github.com/pywinauto/pywinauto下载了pywinauto 64位,并运行了python setup.py install
命令。
输出为:Error: Could not find suitable distribution for Requirement.parse('setuptools-scm')
最佳答案
pypiwin32软件包有一些更改。现在已为3.6之前的Python版本还原(甚至比以前更好,因为它比以前更好)。请参见https://pypi.python.org/pypi/pypiwin32/219,然后重试pip install pywinauto
。