服务器选择
ubuntu Debian-16 4.4.0
虚拟环境搭建
miniconda
去清华源下载 https://mirror.tuna.tsinghua.edu.cn/help/anaconda/
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-py38_4.8.2-Linux-x86_64.sh
一路回车+yes
安装好需要重新连接服务器才可以使用
安装虚拟环境
创建 conda create --name py36 python=3.6
运行 source activate py36
关闭 conda deactivate
安装会遇到速度慢的问题需要切换国内源
https://mirror.tuna.tsinghua.edu.cn/help/anaconda/
用文档跑一遍就可以了
安装chrome及其驱动
sudo wget http://www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/
sudo apt-get -f install
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt-get install google-chrome-stable
如果报错:Unmet dependencies. Try 'apt-get -f install' with no packages
错误原因,大概是缺少了一些依赖项,在linux下,这种小问题真是家常便饭。
sudo apt-get -f install # 安装yi'lai
sudo apt-get -f install google-chrome-stable
切记:需要版本一致
之前写过一个截图服务相关的文档 https://www.jianshu.com/p/8ac6c5b79f3d
Linux root用户下不能打开Google-chrome的解决办法
安装firefox及其驱动
# 安装firefox
# 需要用到驱动程序 geckodriver
下载地址:https://github.com/mozilla/geckodriver/releases
# 第一次需要解决字体的问题
[https://blog.csdn.net/lk7688535/article/details/93316735](https://blog.csdn.net/lk7688535/article/details/93316735)
下载后直接解压,将解压后的文件geckodriver放入/usr/local/bin目录下(该目录是存放执行文件的)
示例代码:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2020-06-24 17:57
# @Author : lizhao
# direction: 百度首页截图
from selenium import webdriver
from selenium.webdriver.firefox.options import Options
geckodriver_path = "/opt/ASE/env/firefox/geckodriver"
options = Options()
options.add_argument('--headless') # 无头模式
browser = webdriver.Firefox(executable_path=geckodriver_path, firefox_options=options)
browser.get("http://www.baidu.com")
browser.find_element_by_id("kw").send_keys("selenium")
browser.find_element_by_id("su").click()
browser.save_screenshot('zabbix_server.png')
browser.quit()
网友评论