404 Error with mybinder.org when I try to deploy a Jupyter Notebook with voila from GitHub

Question:

I have a problem deploying my Jupyter Notebook from Github to mybinder.org.
I configured everything according to several tutorials I found, but everytime I try to build the page mybinder.org gives me this error afterwards:

404 : Not Found,
You are requesting a page that does not exist!

The building process seems to work, as there are no error messages despite the 404 error in the end.

This is my Github page I try to build from: https://github.com/MkengineTA/VoilaDemo

And here you can see the input I use on mybinder.org:

Mybinder Input

Does anyone have an idea what I am doing wrong?

Asked By: Tobias Averbeck

||

Answers:

You didn’t have the correct name of the notebook in the ‘URL to open’ portion of the form.

The resulting correct address should be: https://mybinder.org/v2/gh/MkengineTA/VoilaDemo/main?urlpath=voila%2Frender%2FTestVoila.ipynb , that’s https://mybinder.org/v2/gh/MkengineTA/VoilaDemo/main?urlpath=voila%2Frender%2FTestVoila.ipynb.

You had the name of the notebook wrong in what the form was generating because you input the name of the repo and not the notebook there in front of .ipynb.

Answered By: Wayne