13 lines
168 B
Bash
13 lines
168 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
pip install --upgrade pip
|
|
|
|
pip install -r ./requirements.txt
|
|
|
|
jupyter notebook \
|
|
--allow-root \
|
|
--ip=0.0.0.0 \
|
|
--notebook-dir=/work
|