I'm trying to import MinMaxScaler from sklearn.preprocessing. when I run my code this error appears that refers to the import line:
ValueError: source code string cannot contain null bytes.
I checked and updated all of the requirements for scikit-learn and the error still appears. I also tried to open a blank python file with only this line :
from sklearn.preprocessing import MinMaxScaler
but it didn't help.
What can I do?
*I'm using windows 10.