I know this has been asked several times in the past, but still can't find the answer...
This is the code
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
dataset = pd.read_csv("Data.csv")
x = dataset.iloc[:,0:3].values
y = dataset.iloc[:, 3].values
from sklearn.preprocessing import Imputer
This is the error
File "C:\Users\Martin\Desktop\Python\Udemy_Machine Learning de A a la Z (R y.Python para Data Science)\2. Data_preprocessing\Data_preprocessing.py", line 15, in from sklearn.preprocessing import Imputer
ModuleNotFoundError: No module named 'sklearn'
I'm using Spyder 4.2
After trying Carlos suggestion, now the error i get is that Pandas is not found... Is it because i change the interpreter's location?