pip install selenium -i https://pypi.tuna.tsinghua.edu.cn/simple
点击-->帮助-->关于Google Chrome
http://chromedriver.storage.googleapis.com/index.html
然后根据操作系统下载相关的软件
运行一下pycharm 找到解析器所在的路径,然后将驱动拷贝进去
from selenium.webdriver import Chrome # 1.创建浏览器对象 web = Chrome() # 2. 打开一个网址 web.get("https://www.cnblogs.com/cyleon")