2017-08-01 44 views
0

我使用Pycharm 2017.2Pycharm找不到探查

当我尝试运行分析器,它提出了一个错误,说

“FileNotFoundError:[错误2]没有这样的文件或目录:'/用户/ myname/Library/Application Support/JetBrains/Toolbox/apps/PyCharm -P/ch-0/172.3317.103/PyCharm.app/Contents/helper/profiler/run_profiler.py' “

我试过搜索这个错误在线,但我找不到任何东西。你有什么建议吗?

回答

0

请检查链接:

https://intellij-support.jetbrains.com/hc/en-us/community/posts/207719925-PyCharm-Profiler-is-not-working

When you run profiler, the PyCharm runs the pydevd module which is the part of your PyCharm installation. But you have a pydevd package installed on your Python interpreter, and Python runs it instead of pydevd module from PyCharm.

We share pydevd package with PyDev, and there are some problems with synchronizing the pydevd module between us. So, please, uninstall the pydevd package from your interpreter or use another interpreter.

+0

谢谢你,但我却看到了那个博客帖子,并没有帮助我。我们有不同的错误消息,并且我从未安装过pydevd模块。我使用conda,但调用“conda list”不显示pydevd模块,“import pydevd”会产生错误。所以我不认为这是问题:/ – Ant