For it to run on all operating systems I would use the following:
import os
path = os.path.join(os.path.dirname(__file__), "plots.py")
os.system(f"py {plots.py}")
However
import os
os.system('py ./plots.py')
Seems to be the easiest solution on Ubuntu.