Context: I was using Python on Atom IDE and installing/importing packages is working normally. Now I would like to work with Python on Rstudio through Reticulate package.
Problem: I'm not able to import Pandas on Rstudio even though a can Import numpy and math. The error is "ModuleNotFoundError: No module named 'pandas'".
i) Python 3.8.5 installed (32 bit) ii) pip3 21.1.2 installed iii) Reticulate 1.2.0 installed iv) Pandas is already installed (~\AppData\Local\Programs\Python\Python38-32\Lib\site-packages)
You could have many Python environments.
Check reticulate::py_module_available("pandas")
.
And, if neccesary, reticulate::py_install("pandas")
.