Why yes, there is! (keep in mind that this can only work on the server, and not on your personal computer) Use the linux 'screen' command to create a virtual terminal that will continue after logging out, instructions here .
basically use:
$ screen
to launch a new virtual terminal window. Start your code, and as soon as you run it, type "control + a" and then "d" to disconnect from the window. After disconnecting, you can exit the system, and your program will still work on the server. To return to it, enter:
$ screen -r
and you will return to your program. Very simple! Instructions
source share