I installed Keras, Tensorflow and reticulate packages in R and when I check the version of Python used it's given 3.6 in the r-reticulate folder (so I cannot use Keras as need 3.7). So I run the following line to change the folder to pick up the latest Python version:
use_python("C:/Users/PC/AppData/Local/r-miniconda/", required = TRUE)
Now I lost Numpy. How to change the python version in r-reticulate without losing Numpy ? Or can I specify numpy folder ?
> library(reticulate)
> reticulate::py_config()
python: C:/Users/Mezeix/AppData/Local/r-miniconda/python.exe
libpython: C:/Users/Mezeix/AppData/Local/r-miniconda/python38.dll
pythonhome: C:/Users/Mezeix/AppData/Local/r-miniconda
version: 3.8.3 (default, May 19 2020, 06:50:17) [MSC v.1916 64 bit (AMD64)]
Architecture: 64bit
numpy: [NOT FOUND]
NOTE: Python version was forced by use_python function