I am trying to convert a big ~2GB SPSS (.SAV) file into CSV using Python.
If there was a file which size < 500MB, there is no problem doing the following:
import pandas as pd
df = pd.read_spss('stdFile.sav')
df.to_csv("stdFile.csv", encoding = "utf-8-sig")
but in this case, i got a MemoryError...
Iam looking forward solutions, not necessarily in Python. But I don't have a SPSS license, so I must transform the file with another tool.