我试图使用下面的语法安装win32com.client,但没有成功

>>> pip install pywin32

语法错误:无效语法
>>> pypiwin32

回溯(最近一次呼叫时间):
文件“”,第1行,在
皮皮温32
名称错误:未定义名称“pypiwin32”
>>> pip install pypiwin32

语法错误:无效语法
>>> pip install pypiwin32-220-cp36-none-win32.whl

语法错误:无效语法

最佳答案

这些错误表明您在python环境中。例如,Python REPL以三个符号开头,>>>你不要这个在系统命令提示符下,通过WindowsLinux等在python之外运行这些命令。
以下是我在Python2.7上的工作:

> pip install pypiwin32

也可以从post中尝试以下操作:
> python -m pip install pypiwin32

10-06 09:38