SPARQL kernel and mybinder?

I would love to run this ipynb-file:

But mybinder reports that a SPARQL kernel is missing.

A few years ago an issue was raised indicating that a SPARQL kernel was available at that time: https requests from Sparql kernel · Issue #694 · jupyterhub/mybinder.org-deploy · GitHub

1 Like

I had raised this issue but it was closed and I was adviced to raise the question here:

Please share how are you launching a MyBinder session and seeing this information?



MyBinder uses accompanying configuration files to specify the environment in the specific session that gets launched. In other words, the configuration files specify what is installed and available in the active session. Searching ‘github mybinder sparql’ at Google leads to GitHub - betatim/sparql-notebooks: Sparql notebooks on binder where requirements.txt specifies sparqlkernel for the environment that gets made from sessions launched from that specific repo and the postBuild configuration file installs it into Jupyter for the user of that session.

Launch using the following URL (or click here) and run the code in the first cell and you’ll see sparql code working:

https://mybinder.org/v2/gh/betatim/sparql-notebooks/master?filepath=wikidata.ipynb



You’ll see that the author of the repo you referenced in the issue #694 purposefully(?) didn’t include sparql in the enviornment.yml file configuration file and didn’t install it in the postBuild. Note that the line jupyter sparqlkernel install in the postBuild is commented out so that it doesn’t run. (It probably wouldn’t have worked anyway because sqarql also not installed in the environment.) I suspect the author of that repo stopped tinkering with it around that time when they found the port needed was blocked at the time, and they left sparql as not getting installed for sessions launched from that repo. That’s speculation. However, the point remains that the configuration files in that repo are not clearly set to install sparql currently in MyBinder sessions launched from that repo.

2 Likes

Thanks a lot for the very detailed and helpful reply :smiley:

I will also inform Bob DuCharme, the author of the repo.

1 Like