Pycharm - waiting for REPL response when using python pool using IPython

The response times in PyCharm Python Console are unbearably slow when the console is configured to use IPython. This was not the case in the previous installation. When the Python console is not configured to use IPython and uses IDLE, it works fine.

The bad response time seems to be due to the REPL response function as shown in the figure below. When the REPL response dialog ends, the background process continues to run for several minutes.

Since this was not a problem in the previous installation, the problem must be the result of a configuration change. However, the only thing I changed was using Env Conda instead of virtualenv.

Any ideas?

Python Console

+9


source to share


2 answers


This question was posted by JetBrains. The problem has been duplicated and identified as a bug. The problem status can be viewed at:



https://youtrack.jetbrains.com/issue/PY-24880

+4


source


Here's how to apply the "answer" found in the JetBrains bug filed by @vlmercado https://youtrack.jetbrains.com/issue/PY-24880 :

Disable auto-completion of popups (in Editor-> General-> Code Completions)



enter image description here

0


source







All Articles