安装硒时出现问题

时间:2020-04-03 11:04:49

标签: python selenium pip

我的系统配置是:

操作系统:Windows10 Anaconda安装了Python。

当我尝试使用命令pip install selenium通过pip安装“ Selenium”时。它给出以下错误:

D:\>pip install selenium
WARNING: pip is configured with locations that require TLS/SSL, however the ssl
module in Python is not available.

Collecting selenium



    WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, stat
    us=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/selenium/

    WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, stat
    us=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/selenium/
      WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, stat
    us=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL becau
    se the SSL module is not available.")': /simple/selenium/
      WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, stat
    us=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL becau
    se the SSL module is not available.")': /simple/selenium/
      WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, stat
    us=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL becau
    se the SSL module is not available.")': /simple/selenium/
      Could not fetch URL https://pypi.org/simple/selenium/: There was a problem con
    firming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max
     retries exceeded with url: /simple/selenium/ (Caused by SSLError("Can't connect
     to HTTPS URL because the SSL module is not available.")) - skipping
      ERROR: Could not find a version that satisfies the requirement selenium (from
    versions: none)
    ERROR: No matching distribution found for selenium
    WARNING: pip is configured with locations that require TLS/SSL, however the ssl
    module in Python is not available.

    Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming
    the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retrie
    s exceeded with url: /simple/pip/ (Caused by SSLError("Can't connect to HTTPS UR
    L because the SSL module is not available.")) - skipping

1 个答案:

答案 0 :(得分:0)

您可以从Anaconda Prompt开始尝试。

您将看到(基本),现在升级点数。 示例:

Python代码:

(base) C:\Users\Tom>cd ..
(base) C:\Users>cd ..
(base) C:\>python -m pip install --upgrade pip
Requirement already up-to-date: pip in g:\anaconda3\lib\site-packages (20.0.2)
(base) C:\>pip -V
pip 20.0.2 from G:\Anaconda3\lib\site-packages\pip (python 3.7)
# Try install
(base) C:\>pip install selenium

这会花费更长的时间,但也会安装或升级Anaconda内部使用的SSL库。

Python代码:

(base) C:\>conda update condo
......
pyopenssl-19.1.0     | 47 KB     | #################################### | 100%
openssl-1.1.1f       | 4.7 MB    | #################################### | 100%

Source