Newbie question: Pycharm is stuck with processes running: REPL Communication
I tried to execute my code in the console and this seems to result in pycharm geting stuck. I have releatively simple code that I'm trying to execute in the console
import pandas as pd
import numpy as np
from matplotlib import pyplot as plt
iris=pd.read_csv('iris.csv') #import iris
print(iris)
but when I hit execute selection in python console Pycharm always gets stuck, I see a process running endlessly (never stopping) called REPL communication. The code doesn't run. I have attached my interpreter configuration to this post
Please sign in to leave a comment.
Maybe the csv file is so big it's simply taking time to process it all?
Hi,
It seems like a known issue reported here https://youtrack.jetbrains.com/issue/PY-40019
Please attach your logs and steps to reproduce the issue(if there are any) to the ticket.
Apologies for the inconvenience.
Same issue here :/
PyCharm 2020.2 (Professional Edition)
Build #PYA-202.6397.98, built on July 27, 2020
Same issue also for me...
PyCharm 2020.2
unusable console and ipython notebook
If you're using large dataframes, please see https://youtrack.jetbrains.com/issue/PY-30650
Otherwise, please file a new issue.
Same with me.
I get a never ending "Waiting for Execution Result" for some simple code line. This only happens some times
For me, I'm using Django, and I had many `@property` that were computationally heavy in the class (several checked if a file existed in S3 for example). I removed the `@property` and the Python Console is suddenly fast. Not sure if this is related or could be a solution for someone else.