wget
解壓
tar zxvf geckodriver-v0.22.0-linux64.tar.gz
轉移
轉移的目的是將解壓出來的exe程式放到python的安裝目錄下
mv geckodriver /usr/local/bin
建立test.py檔案測試
from selenium import webdriver
firefoxoptions = webdriver.firefoxoptions(
)firefoxoptions.set_headless(
)brower = webdriver.firefox(
)brower.get(
'')print
(brower.page_source)
brower.close(
)
測試
python test.py
如果在測試**現selenium.common.exceptions.sessionnotcreatedexception: message: unable to find a matching set …的錯誤,可以參考這篇文章進行解決: linux環境下Tomcat安裝
2.解壓tomcat到 usr local 下,執行tar zcvf apache tomcat 5.5.30.tar.gz 3.設定tomcat homel路徑.export tomcat home usr local apache tomcat 5.5.30 4.啟動tomcat,到tomcat...
linux環境下安裝nginx
目的 安裝nginx 環境 ubuntu server 14.03 效果 安裝 g apt get install g 我把檔案放在我自己的目錄裡 usr share myserver tools 進入該目錄 cd usr share myserver tools解壓 tar xzvf pcre 8...
linux下安裝python環境
1 linux下安裝python3 在安裝包中有乙個readme的檔案,裡面有寫如何安裝 tar jxvf python 3.5.0 tar.xz cd python 3.5.0 configure prefix usr local python3 make make install 做軟鏈 ln ...