12 lines
244 B
Bash
12 lines
244 B
Bash
#!/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 $@
|
|
}
|