handson-ml/.binder_start

12 lines
244 B
Plaintext
Raw Normal View History

2016-11-24 21:57:26 +01:00
#!/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 $@
}