第一節:Python+Selenium環境搭建

1、selenium工做原理

 

 2、安裝python

Window系統下,python的安裝很簡單。訪問python.org/download,下載最新版本,安裝過程與其餘windows軟件相似。記得下載後設置path環境變量,而後Windows命令行就能夠調用了:html

 3、安裝selenium

dos中進入python安裝目錄scripts文件夾下  輸入pip install seleniumpython

可以使用如下命令查看是否安裝成功:windows

pip show seleniumspa

 

4、安裝visual studio code

https://jingyan.baidu.com/article/6d704a136d72ae28db51ca27.html命令行

5、遇到的問題

一、pip安裝selenium提示:Unknow or unsupported command install3d

 安裝Python的時候,明明已經已經安裝了pip,可經過 pip 安裝 selenium 時提示:Unknow or unsupported command install ,多是因爲已經安裝了多個pip的緣故(其餘軟件也有可能安裝pip)。code

解決方法以下:htm

(1)where pip找出 全部 pip的路徑;blog

(2)找到並進入Python下的那個pip路勁;ip

(3)再經過pip install  selenium 安裝 便可;

二、pthon程序執行pip install ***報錯SyntaxError: invalid syntax

其實錯誤緣由很簡單,就是不該該在python開發環境中下載包,應該先用exit()命令退出Python環境,

而後再運行pip3 install ***便可成功下載依賴包。

相關文章
相關標籤/搜索