Created
June 14, 2023 19:04
-
-
Save BlazerYoo/6b43e834ab83134efd3207ecdf273436 to your computer and use it in GitHub Desktop.
Google Colab terminal (from https://stackoverflow.com/questions/59318692/how-can-i-run-shell-terminal-in-google-colab)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from IPython.display import JSON | |
from google.colab import output | |
from subprocess import getoutput | |
import os | |
def shell(command): | |
if command.startswith('cd'): | |
path = command.strip().split(maxsplit=1)[1] | |
os.chdir(path) | |
return JSON(['']) | |
return JSON([getoutput(command)]) | |
output.register_callback('shell', shell) | |
# In separate cell, insert below: | |
#@title Colab Shell | |
%%html | |
<div id=term_demo></div> | |
<script src="https://code.jquery.com/jquery-latest.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/jquery.terminal/js/jquery.terminal.min.js"></script> | |
<link href="https://cdn.jsdelivr.net/npm/jquery.terminal/css/jquery.terminal.min.css" rel="stylesheet"/> | |
<script> | |
$('#term_demo').terminal(async function(command) { | |
if (command !== '') { | |
try { | |
let res = await google.colab.kernel.invokeFunction('shell', [command]) | |
let out = res.data['application/json'][0] | |
this.echo(new String(out)) | |
} catch(e) { | |
this.error(new String(e)); | |
} | |
} else { | |
this.echo(''); | |
} | |
}, { | |
greetings: 'Welcome to Colab Shell', | |
name: 'colab_demo', | |
height: 250, | |
prompt: 'colab > ' | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment