12 lines
244 B
Plaintext
12 lines
244 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
function jupyter {
|
||
|
# Run Jupyter with xvfb-run so that it can render the CartPole
|
||
|
# environment without crashing:
|
||
|
xvfb-run -s "-screen 0 1400x900x24" /home/main/.local/bin/jupyter $@
|
||
|
}
|
||
|
|
||
|
function ipython {
|
||
|
jupyter $@
|
||
|
}
|