I think there is some kind of misunderstanding going on here, you can't import pandas without installing it first, regardless of the IDE you are using.
You can install python packages from R console this way
library(reticulate)
py_install("pandas")
After that you should be able to import pandas module