I am receiving an error when trying to use reticulate that says
library(reticulate)
library(tidyverse)
library(janitor)
Sys.setenv(RETICULATE_PYTHON = "C:/Users/Menu/Programs/Python 3.10.exe")
My Python 3.10 is located in C:/Users/Menu/Programs/Python 3.10.exe
Error in system2(command = python, args = shQuote(config_script), stdout = TRUE, :
'""C:/Users/Menu/Programs/Python 3.10.exe""' not found
When I type in the command prompt:
>>>where python.
C:\Users\AppData\Local\Microsoft\WindowsApps\python.exe
Sys.setenv(RETICULATE_PYTHON = "C:\Users\AppData\Local\Microsoft\WindowsApps\python.exe")
I admit that as a Linux user I can never keep straight how Windows handles its directory separators. So maybe use: C:/Users/AppData/Local/Microsoft/WindowsApps/python.exe which is what it might be on a Linux box. – Sextet