无法在 window python 2.7.14 中 运行 pip
Cannot run pip in window python 2.7.14
当我在 C:\Python27\python.exe
当我输入:'cd\' 时出现:'...'。我输入 'cd python2.7',它出现了:'Syntax Error: invalid syntax'.
所以我再试一次。
我输入:'cd\' 并输入:'python -m pip install -U pip'。它出现了:'Syntax Error: invalid syntax'.
我该如何解决?
pip 命令不是 Python 语法 :)
它是一个可执行文件。要从 Python 运行 它,您必须使用 subprocess 模块。但对于单个 运行,请参见下文。
只需 运行 在 cmd.exe 控制台中(按 Ctrl+R,键入 cmd.exe,按 Enter),而不是 python.exe:
python -m pip install -U pip
pip install -U pywinauto
或完整路径(如果安装的 Python 很少):
C:\Python34\Scripts\pip.exe install -U pywinauto
当我在 C:\Python27\python.exe
当我输入:'cd\' 时出现:'...'。我输入 'cd python2.7',它出现了:'Syntax Error: invalid syntax'.
所以我再试一次。
我输入:'cd\' 并输入:'python -m pip install -U pip'。它出现了:'Syntax Error: invalid syntax'.
我该如何解决?
pip 命令不是 Python 语法 :) 它是一个可执行文件。要从 Python 运行 它,您必须使用 subprocess 模块。但对于单个 运行,请参见下文。
只需 运行 在 cmd.exe 控制台中(按 Ctrl+R,键入 cmd.exe,按 Enter),而不是 python.exe:
python -m pip install -U pip
pip install -U pywinauto
或完整路径(如果安装的 Python 很少):
C:\Python34\Scripts\pip.exe install -U pywinauto