I'm new to jupyterlab, I run it on my browser. While I'm adding Sparql code, I tried to import rdflib; However, it shows me an error saying ModuleNotFoundError: No module named 'rdflib'. I need help of how to make rdflib works on online JupyterLab
Asked
Active
Viewed 343 times
0
-
Try `import sys` and then `!{sys.executable} -m pip install rdflib`. – Stanislav Kralin Dec 09 '18 at 16:09
-
HTH: https://jakevdp.github.io/blog/2017/12/05/installing-python-packages-from-jupyter/#How-to-use-Pip-from-the-Jupyter-Notebook – Stanislav Kralin Dec 10 '18 at 09:54