mirror of
https://github.com/jupyter/notebook.git
synced 2024-11-27 03:20:27 +08:00
c6faa5c32d
* Try force reinstalling on Binder * uninstall nbclassic * Update postBuild * Add comment about uninstall nbclassic
12 lines
277 B
Bash
12 lines
277 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
python -m pip install -e . --force-reinstall
|
|
|
|
# TODO: remove when it's possible to install nbclassic next to Notebook v7
|
|
# without nbclassic shadowing the v7 endpoints
|
|
python -m pip uninstall nbclassic -y
|
|
|
|
jlpm && jlpm run build
|
|
jlpm run develop
|