ssh://root@192.168.33.12:22/root/anaconda3/bin/python3 -u /www/python3/maoyantop100/meishi_selenium.py /root/anaconda3/lib/python3.6/site-packages/selenium/webdriver/phantomjs/webdriver.py:49: UserWarning: Selenium support for PhantomJS has been deprecated, please use headless versions of Chrome or Firefox instead warnings.warn('Selenium support for PhantomJS has been deprecated, please use headless '
错误原因:Selenium 已经弃用 PhantomJS ,请使用火狐或者谷歌无界面浏览器。
解决方法:selenium的版本问题,使用
pip show selenium
显示默认安装的是3.13.1
版本
卸载当前版本
pip uninstall selenium
卸载之后重新安装selenium 版本2.48.0
安装成功,专门写出来这个版本号是因为我使用2.0.0安装报错
pip install selenium==2.48.0
再次运行爬取淘宝商品数据信息后,该报错信息就消失了,此处就不贴图了,亲测可用。