mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
11 lines
233 B
Bash
Executable File
11 lines
233 B
Bash
Executable File
#!/usr/bin/bash
|
|
set -euo pipefail
|
|
|
|
# Run by the installer after the hub environment has been set up.
|
|
|
|
export PATH=${PREFIX}/bin:$PATH
|
|
|
|
pip install --no-cache-dir -e /home/yuvipanda/code/littlest-jupyterhub
|
|
|
|
python3 -m tljh.installer
|