2017-08-12 83 views
1

我是一個硒新手。硒3.5.0與舊版本

我在Python中使用selenium,今天我用pip升級到了硒3.5.0。一切順利(見圖)。

enter image description here

但如果我要問的硒版本我有一個不同的版本(3.4.3):

enter image description here

什麼能是什麼原因?我也嘗試卸載(成功)並重新安裝(成功)。但版本仍然是錯誤的。

我在做什麼錯了?

+0

你有Python 2和Python 3的在你的系統? – demouser123

+0

不,只有Python 3.6.1 –

回答

0

Python 3.6.1

  1. 要查看已安裝的Selenium版本:

    pip show -V selenium 
    
  2. 要升級的Selenium的版本到最新版本:

    pip install -U selenium 
    
  3. 要卸載Selenium完全:

    pip uninstall selenium 
    
  4. 要安裝的特定版本Selenium

    pip install selenium==3.5.0 
    
  5. Selenium的版本升級到一個特定的版本:

    pip install -U selenium==3.5.0