带有 pycharm 的 pycallgraph 不起作用

编程入门 行业动态 更新时间:2024-10-26 20:30:42
本文介绍了带有 pycharm 的 pycallgraph 不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在使用 mac os x 并尝试设置 pycallgraph.我已经用 pip 安装了 pycallgraph,用 homebrew 安装了 graphviz.一切都从外壳工作.但不是来自pycharm.

I'm using mac os x and trying to setup pycallgraph. Ive installed pycallgraph with pip and graphviz with homebrew. Everything works from shell. But not from pycharm.

from pycallgraph import PyCallGraph from pycallgraph import Config from pycallgraph import GlobbingFilter from pycallgraph.output import GraphvizOutput config = Config() config.trace_filter = GlobbingFilter(exclude=[ 'pycallgraph.*', ]) graphviz = GraphvizOutput(output_file='filter_exclude.png') with PyCallGraph(output=graphviz, config=config): def my_fun(): print "HELLO" my_fun()

/Users/user/Projects/py27/bin/python /Users/user/Projects/py27_django/test2.py Traceback (most recent call last): File "/Users/user/Projects/py27_django/test2.py", line 15, in <module> with PyCallGraph(output=graphviz, config=config): File "/Users/user/Projects/py27/lib/python2.7/site-packages/pycallgraph/pycallgraph.py", line 32, in __init__ self.reset() File "/Users/user/Projects/py27/lib/python2.7/site-packages/pycallgraph/pycallgraph.py", line 53, in reset self.prepare_output(output) File "/Users/user/Projects/py27/lib/python2.7/site-packages/pycallgraph/pycallgraph.py", line 97, in prepare_output output.sanity_check() File "/Users/user/Projects/py27/lib/python2.7/site-packages/pycallgraph/output/graphviz.py", line 63, in sanity_check self.ensure_binary(self.tool) File "/Users/user/Projects/py27/lib/python2.7/site-packages/pycallgraph/output/output.py", line 96, in ensure_binary 'The command "{}" is required to be in your path.'.format(cmd)) pycallgraph.exceptions.PyCallGraphException: The command "dot" is required to be in your path. Process finished with exit code 1

这里:/Users/user/Projects/py27/ -> virtualenv 目录/Users/user/Projects/py27_django/ -> 项目目录

Here: /Users/user/Projects/py27/ -> virtualenv dir /Users/user/Projects/py27_django/ -> project dir

它想从我这里得到什么?

What does it want from me?

推荐答案

答案是:

在菜单栏中:Pycharm -> 运行 -> 编辑配置...

In menubar: Pycharm -> Run -> Edit Configurations...

在对话框中:对于选定的 .py 文件或 Defaults/Python:

In dialog: for selected .py file or for Defaults/Python:

环境字段组:

环境变量 > ... -> + ->添加条目:名称:PATH值:/usr/local/bin

应选择包含打印环境变量

更多推荐

带有 pycharm 的 pycallgraph 不起作用

本文发布于:2023-11-24 11:12:30,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1624970.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:不起作用   pycharm   pycallgraph

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!