安装Python库

问题描述 投票:0回答:2

我想在python中导入win32com 然后我使用

导入
  1. pip 安装 pypiwin32
  2. pip 安装 pywin32
  3. python -m pip 安装 pypiwin32
  4. python -m pip install pywin32

但是,没有成功并收到错误通知

Defaulting to user installation because normal site-packages is not writeable
Collecting pypiwin32
  Using cached pypiwin32-223-py3-none-any.whl (1.7 kB)
INFO: pip is looking at multiple versions of pypiwin32 to determine which version is compatible with other requirements. This could take a while.
  Using cached pypiwin32-219.zip (4.8 MB)
  Preparing metadata (setup.py) ... error
  error: subprocess-exited-with-error
  
  × python setup.py egg_info did not run successfully.
  │ exit code: 1
  ╰─> [7 lines of output]
      Traceback (most recent call last):
        File "<string>", line 36, in <module>
        File "<pip-setuptools-caller>", line 34, in <module>
        File "/tmp/pip-install-xfjlulo3/pypiwin32_de338b78d1fd4e1a9fecfba7f7b126e9/setup.py", line 121
          print "Building pywin32", pywin32_version
                                 ^
      SyntaxError: Missing parentheses in call to 'print'. Did you mean print("Building pywin32", pywin32_version)?
      [end of output]
  
  note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed

× Encountered error while generating package metadata.
╰─> See above for output.

请帮忙

python google-cloud-platform sap
2个回答
0
投票

生成包元数据时遇到错误。 ╰─> 请参阅上面的输出。

注意:这是上面提到的包的问题,而不是 pip。

我尝试下载其他模块并且它有效,所以可能是 win32com 本身的问题


0
投票

解决您的错误消息,源自

pip install pypiwin32

print "Building pywin32", pywin32_version

表明您正在尝试使用 python 3x 版本安装为 python 2x 编写的模块,这是行不通的。

pypiwin32
pywin32
的版本支持 python 3x,但不适用于您的操作系统。您正在尝试在非 Windows 计算机上获取特定于 Windows 的 Python 模块。如果您查看 pywin32 的 pypi 页面,我们会在描述中看到

提供从 Python 访问许多 Windows API 的权限。

所以没有办法,你将让它在非 Windows 机器上工作

© www.soinside.com 2019 - 2024. All rights reserved.