I’m running on Ubuntu 20.04. Trying to use the RunScript node in Natron.
This runs fine:
#!/bin/bash
touch /tmp/shtouch
But when I try this, I get nothing:
#!/usr/bin/env python3
from pathlib import Path
Path('/tmp/pytouch').touch()
I made a python script of the above, it runs.
this runs, I get the version into in /tmp/pythoninfo
#!/usr/bin/env bash
python3 --version >/tmp/pythoninfo
this does nothing in RunScript, I added some prints before and after the touch above. It runs successfully on command line.
#!/usr/bin/env bash
python3 <path to>/test.py >/tmp/pyout 2>&1
It just doesn’t make sense to me. What am I missing?