-
Notifications
You must be signed in to change notification settings - Fork 315
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean up after Notebook syncing #96
Comments
I've been commenting on the PRs post-merge to indicate things I thing will need a look at for cleanup. |
Just taking this train today before it gets full speed :)
|
Hi @echarles! Thanks for joining all the fun! 😆
|
Thx @Zsailer All 3 branches (notebook, voila, jupyterlab) have conflicts with current server master. What would would advice as next step (one of those, a brand new one)? - I favor jupyterlab as this is my main working env. Happy to help in the coming weeks on this. |
Awesome! #48 added a new API for appending frontend applications as extensions to the server. The goal is to use this API for notebook, voila, jupyterlab, etc. We've already ported notebook and voila in those PRs I mentioned. We haven't attempted to port JupyterLab yet. It's a fair amount of work, but if you're feeling ambitious, we'd love the contribution! If you'd rather spend your time testing the jupyter_server (instead of writing a whole new extension from jupyterlab), notebook and voila will be considerably less work. |
@echarles I just verified that both branches above work with jupyter_server master. If you're still having issues, let me know. |
@Zsailer I will first try with the notebook and voila branches, but looking at the github PR page, the status at the bottom of the pages shows |
@Zsailer hacking this closed issue to give you feedback on end-users tests based on your branches. I can successfully run your voila branch (see [1]). When I run When I run [1] conda remove -y --name voila-server --all || true
conda create -y -n voila-server python=3.7 && \
conda activate voila-server && \
git clone https://github.com/jupyter/jupyter_server.git --branch master --single-branch --depth 1 && \
cd jupyter_server && python setup.py develop && cd .. && \
git clone https://github.com/zsailer/voila.git --branch extensionapp --single-branch --depth 1 && \
cd voila && python setup.py develop && cd .. && \
voila voila/notebooks/basics.ipynb [2] conda remove -y --name jupyter-server --all || true
conda create -y -n jupyter-server python=3.7 && \
conda activate jupyter-server && \
git clone https://github.com/jupyter/jupyter_server.git --branch master --single-branch --depth 1 && \
cd jupyter_server && python setup.py develop && cd .. && \
git clone https://github.com/zsailer/notebook.git --branch notebook-ext --single-branch --depth 1 && \
cd notebook && python setup.py develop && cd .. && \
jupyter notebook |
@Zsailer For voila, I realize I was falling back to a repvois |
Quick update to my latest comment comment for voila - it is now working for me with latest commits from @maartenbreddels in https://github.com/Zsailer/voila/tree/extensionapp |
@kevin-bates and I chatted today and developed a plan for syncing notebook and jupyter_server.
We're hoping to move fast and merge quickly. Then we can go back and fix things after we get up to sync.
The text was updated successfully, but these errors were encountered: