Hello,
I'm making a Shiny App which is a graphical interface launching a python script with certain parameters chosen from the interface.
The problem is : this app is supposed to be spread so I wanted to use an environnement for my Python script to simplify the installation.
However I can't manage to activate the environnement.
I tried something like :
system(".venv\Scripts\activate.bat")
system(paste("python script.py", args))
But it seems the script doesn't use the environnement.
Thanks in advance!
PS : I'm on windows