Merge pull request #646 from betatim/fix-server-proxy

[MRG] Fix up the server proxy package to get websockets back
pull/647/head
Yuvi Panda 2019-04-15 15:09:07 -07:00 zatwierdzone przez GitHub
commit 746e4d92e0
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 5 dodań i 4 usunięć

Wyświetl plik

@ -214,10 +214,11 @@ class RBuildPack(PythonBuildPack):
"${NB_USER}",
# Install nbrsessionproxy
r"""
pip install --no-cache-dir nbrsessionproxy==0.8.0 && \
jupyter serverextension enable nbrsessionproxy --sys-prefix && \
jupyter nbextension install --py nbrsessionproxy --sys-prefix && \
jupyter nbextension enable --py nbrsessionproxy --sys-prefix
pip install --no-cache-dir https://github.com/jupyterhub/jupyter-server-proxy/archive/7ac0125.zip && \
pip install --no-cache-dir jupyter-rsession-proxy==1.0b6 && \
jupyter serverextension enable jupyter_server_proxy --sys-prefix && \
jupyter nbextension install --py jupyter_server_proxy --sys-prefix && \
jupyter nbextension enable --py jupyter_server_proxy --sys-prefix
"""
),
(