Fancy playing with RDKit C++ API without needing to set up a C++ project and compile it? But wait... isn't C++ a compiled programming language? How this can be even possible?
Thanks to Cling (CERN's C++ interpreter) and xeus-cling jupyter kernel is possible to use C++ as an intepreted language inside a jupyter notebook!
We prepared a simple notebook showing few examples of RDKit functionalities and a docker image in case you want to run it.
With the single requirement of docker being installed in your computer you'll be able to easily run the examples following the three steps below:
- docker pull eloyfelix/rdkit_jupyter_cling
- docker run -d -p 9999:9999 eloyfelix/rdkit_jupyter_cling
- open http://localhost:9999/notebooks/rdkit_cling.ipynb in a browser
Comments