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

 

 

1
7 comments
Avatar
Permanently deleted user

Maybe the csv file is so big it's simply taking time to process it all?

0

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. 

 

 

0

Same issue here :/

 

PyCharm 2020.2 (Professional Edition)
Build #PYA-202.6397.98, built on July 27, 2020

0

Same issue also for me...

PyCharm 2020.2

unusable console and ipython notebook

0

If you're using large dataframes, please see https://youtrack.jetbrains.com/issue/PY-30650

Otherwise, please file a new issue.

0

Same with me.
I get a never ending "Waiting for Execution Result" for some simple code line. This only happens some times

2

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.

0

Please sign in to leave a comment.