blob: 415430a255f6718877f0f02060623c8630effa1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import os
from subprocess import *
print(os.getcwd())
tar_fil = os.path.join(os.getcwd(),'source_file.r')
print(tar_fil)
if os.path.exists(tar_fil):
rscript_path = 'C:/Program Files/R/R-4.2.2/bin/Rscript.exe'
print(os.path.exists(rscript_path))
rscript_cmd = 'Rscript'
run(
f'{rscript_cmd} "{tar_fil}"',
cwd = os.getcwd(),
start_new_session = True
)
print("end launcher")
|