I\'m using fabric to remotely start a micro aws server, install git and a git repository, adjust apache config and then restart the server.
If at any point, from the
Couple of more ways to fix the problem.
You could run the fab target with --no-pty option
fab --no-pty
Inside fabfile, set the global environment variable always_use_pty to False, before your target code executes
env.always_use_pty = False