I have a python script that sends a message to Discord. From R, I have executed the following succesfuly several times:
library(reticulate)
use_python('C:/Users/OfirL1/Miniconda3/', required = T)
source_python('C:/Users/OfirL1/Google Drive (ronnydorone@mail.tau.ac.il)/Model Data/message.py')
# use sourced function here
But today, without any changes, I now get:
## Error in python_config(python_version, required_module, python_version, :
## Error 1033 occurred running C:/Users/OfirL1/Miniconda3/python.exe
## In addition: Warning message:
## In system2(command = python, args = paste0("\"", config_script, :
## running command '"C:/Users/OfirL1/Miniconda3/python.exe" "D:/OfirL1/Documents/R/win-library/3.6/reticulate/config/config.py"' had status 1033
I don't understand why, or what 1033 stands for (have not been able to find any information on it).