I think the problem is that you are not providing a conda evironment but the path to your python installation, if that is the case, then you have to use use_python() function instead, for example this works on windows.
library(reticulate)
use_python("C:\\Users\\user_name\\Anaconda3\\python.exe", require = TRUE)
pd <- import("pandas")