widnows 使用cprofile、gprof2dot、graphviz对python项目进行可视化性能分析

1. 运行cprofile生成python方法调用信息

pr = cProfile.Profile()
pr.enable() # 开始记录

# 要执行的代码
res = your_method()

pr.disable() # 结束记录
pr.dump_stats('your/path/restats.dump') #写入dump文件
pr.print_stats() #打印

2. 安装gprof2dot和graphviz

2.1 安装gprof2dot
git clone https://github.com/jrfonseca/gprof2dot.git
2.2 安装graphviz

windows安装对应版本graphviz:下载地址

  • 打开已经下载好的软件,点击下一步

widnows 使用cprofile、gprof2dot、graphviz对python项目进行可视化性能分析_第1张图片

  • 安装时添加Path到环境变量中

widnows 使用cprofile、gprof2dot、graphviz对python项目进行可视化性能分析_第2张图片

  • 可更改安装路径

widnows 使用cprofile、gprof2dot、graphviz对python项目进行可视化性能分析_第3张图片

  • 判断是否安装成功

widnows 使用cprofile、gprof2dot、graphviz对python项目进行可视化性能分析_第4张图片

如未安装成功,可以尝试重启下电脑使环境变量生效

3.  生成可视化结果

切换到gprof2dot项目下,执行下面脚本,路径换成你本地生成文本路径

python gprof2dot.py -f pstats your\path\restats.dump | dot -Tpng -o your\path\make_run.png

执行结果

widnows 使用cprofile、gprof2dot、graphviz对python项目进行可视化性能分析_第5张图片

你可能感兴趣的:(Python,python,开发语言)