I am using an i7 laptop with 8gb RAM with no viruses, I am trying to read a 2.2 gb CSV file into python dataframe using the following code:
tp = pd.read_csv(r'..\train_ver2\train_ver2.csv',iterator =True, chunksize=10000)
df =pd.concat(tp,ignore_index =True)
print(df)
but mu system just hangs everytime I run the command. Is their a problem with my code or is my system not efficient enough? Any thoughts or suggestions are welcome. Thankyou!