It seems that you have a string hidden in your dataframe: "CC6000".
Linear Regression only works with numerical samples, so he can't handle with this string.
I have looked your data, and I haven't seen this string, but for sure it has to be there. When you find him, you would have to eliminate this sample if it's the unique string or even, if all the feature is categorical, you would have to encode it or remove.
To look for this string try something like:
df.isin(['CC6000']).any()
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…