2017-08-01 42 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