I\'m debugging some python script that must run on my virtual machine. And, I prefer to edit the scripts locally(outside of virtual machines). So I find it\'s tediou
You can do it via ssh.
ssh user@192.168.1.101 "python ./hello.py"
You can also edit the script in ssh using a textual editor or X11 forwarding.