diff --git a/node/run.py b/node/run.py deleted file mode 100644 index c6718a9..0000000 --- a/node/run.py +++ /dev/null @@ -1,11 +0,0 @@ -import subprocess - -# Path to a Python interpreter that runs any Python script -# under the virtualenv /path/to/virtualenv/ -python_bin = "/home/max/venv/bin/activate" - -# Path to the script that must run under the virtualenv -script_file = "/home/max/maths/maths.py" - -subprocess.Popen([python_bin, script_file]) -