
Python问题
python问题解决方案汇总
Vincent_Han
要做测试界的NO1.,而不是码农。
英雄不问出处,流氓不看岁数,相对于经历和资历,我看重能力与潜力。
展开
-
Python selenium 安装与 chromedriver安装
安装selenium selenium可以直接可以用pip安装。 pip install selenium 安装chromedriver 下载 chromedriver的版本一定要与Chrome的版本一致,不然就不起作用。 有两个下载地址: 1、http://chromedriver.storage.googleapis.com/index.html 2、https://npm.taobao.org/mirrors/chromedriver/ 当然,你首先需要查看你的Chrome.原创 2021-04-07 15:51:04 · 181 阅读 · 3 评论 -
Python打包exe文件方法之一
使用 安装: pip install pyinstaller 使用方法(例子): pyinstaller -D -p F:\Python27\Lib -i logo.ico mian.py 总结 Pyinstaller -F setup.py 打包exe Pyinstaller -F -w setup.py 不带控制台的打包 Pyinstaller -F -i xx.ico setup.py 打包指定exe图标打包 平常我们只需要这三个就好了,足够满足所有需求了。 ...原创 2020-09-13 09:53:30 · 170 阅读 · 0 评论