当我安装 Selenium 时,出现以下错误:
Shubham@Shubham-To-be-filled-by-O-E-M:~$ sudo apt-get update
Get:1 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]
Hit:2 https://repo.skype.com/deb stable InRelease
Hit:3 http://in.archive.ubuntu.com/ubuntu xenial InRelease
Get:4 http://in.archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]
Get:5 http://in.archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]
Fetched 323 kB in 8s (38.6 kB/s)
Reading package lists... Done
Shubham@Shubham-To-be-filled-by-O-E-M:~$ sudo pip install selenium
Traceback (most recent call last):
File "/usr/bin/pip", line 9, in <module>
from pip import main
ImportError: cannot import name main
我应该如何进行?
Selenium 可从 Ubuntu 16.04 及更高版本的默认 Ubuntu 存储库中获得。要安装 selenium,请打开终端并输入:
和/或
然后键入
python
以启动 Python 解释器,from selenium import webdriver
应该像这样工作:假设路径
~/.local/bin
在您的执行 PATH 中,以下是安装 Firefox webdriver 的方法,称为 geckodriver:要安装特定版本,请转到pypi。
4.0.0.a7
从发布历史和标签运行示例中找到您需要的版本:同样适用于
Ubuntu 20.04
.