Skip to content

Commit

Permalink
Fix Binder
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Sep 25, 2021
1 parent 88d4ee3 commit c033f0c
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions binder/postBuild
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
#!/bin/bash

mkdir fps \
&& wget -q https://github.com/jupyter-server/fps/archive/master.tar.gz -O - \
| tar xz -C fps --strip-components=1 \
&& cd fps \
&& python -m pip install . \
&& python -m pip install plugins/uvicorn \
&& cd .. \
&& rm -rf fps
mkdir fps && cd fps && curl -L -O https://github.com/jupyter-server/fps/archive/master.tar.gz && tar zxf master.tar.gz && cd fps-master && python -m pip install . && python -m pip install ./plugins/uvicorn && cd ../.. && rm -rf fps

python -m pip install .[jupyterlab] --no-deps
python -m pip install . --no-deps
python -m pip install plugins/lab
python -m pip install plugins/jupyterlab
python -m pip install plugins/retrolab
python -m pip install plugins/contents
Expand Down

0 comments on commit c033f0c

Please sign in to comment.