摘要: 格式: select A, count(*) as num from test2 group by A 应用: 统计超时接口出现的次数,并按出现次数降序 select api_purpose,count(api_purpose) as count_time_out from response_tim 阅读全文
posted @ 2020-05-09 16:38 wangju003 阅读(2027) 评论(0) 推荐(0) 编辑
摘要: 导出: 将项目中使用的第3方工具包名称及版本号导出至1个名requirements.txt的文件 pip freeze > requirements.txt 安装: 激活虚拟环境(不激活虚拟环境,会在python全局安装)--可省略 workon autotest 在虚拟环境中安装requireme 阅读全文
posted @ 2020-05-09 15:53 wangju003 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 警告: Warning: Python 3.6 was not found on your system… You can specify specific versions of Python with: $ pipenv --python path\to\python 原因: 服务器项目中的py 阅读全文
posted @ 2020-05-09 15:12 wangju003 阅读(1582) 评论(0) 推荐(0) 编辑
摘要: 说明: 确认本地存在python运行环境(我只安装了python3) C:\Users\ASUS>pip --version pip 10.0.1 from d:\python37\lib\site-packages\pip (python 3.7) C:\Users\ASUS>python --v 阅读全文
posted @ 2020-05-09 15:03 wangju003 阅读(904) 评论(0) 推荐(0) 编辑
摘要: 1.下载安装: git下载地址(官网下载速度实在太慢) 之后一路next,安装完成。 安装完成看下开始菜单,能看到git的icon就完成了 在命令行中测试安装成功: [E:\~]$ git --version git version 2.26.2.windows.1 2.使用 配置gitGit跟踪谁 阅读全文
posted @ 2020-05-09 14:27 wangju003 阅读(2898) 评论(0) 推荐(0) 编辑