安装Selenium Python绑定时出现术语“pip”无法识别为cmdlet、函数、脚本文件或可操作程序的名称”错误

h22fl7wq  于 2023-01-18  发布在  Python
关注(0)|答案(1)|浏览(1121)

我正在尝试安装Python Selenium,pip install selenium,但是我得到了这个错误:
文件“",第1行pip3安装selenium ^^^^^^语法错误:无效语法的解决方案是什么
快照:

jei2mxaa

jei2mxaa1#

此错误消息...

pip : The term 'pip' is not recognized as the name of a cmdlet, function, script file, or
operable program. Check the spelling of the name, or if a path was included, verify that
the path is correct and try again.
At line:1 char:1
+ pip install -U PySide
+ ~~~
    + CategoryInfo          : ObjectNotFound: (pip:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

...表示系统无法定位 pip
溶液
当用户尝试在命令提示符中使用pip时,windows上会显示此错误。要在Windows os上解决此错误,您需要将 Python解释器 * 的路径添加到系统*Path**变量中。
要查看可以使用pip执行的操作列表,可以在终端上执行以下命令:

py -m pip

此外,您可能需要升级pip,如下所示:

python -m pip install --upgrade pip

然后,您只需按照以下步骤安装或升级Selenium Python bindings

pip install -U selenium

相关问题