notebook/binder/postBuild
Jeremy Tuloup c6faa5c32d
Uninstall nbclassic on Binder so Notebook v7 can load (#6505)
* Try force reinstalling on Binder

* uninstall nbclassic

* Update postBuild

* Add comment about uninstall nbclassic
2022-08-04 19:05:31 +02:00

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