Installing a Jupyter extension
Extensions modify the appearance or behaviour of Jupyter applications (including JupyterLab and Jupyter Notebook).
/home/cdsw
for
each project. The following example installs the ipython-sql
extension. This extension
adds a %sql
magic command that allows you to communicate directly with any
database supported by SQLAlchemy.
%sql
magic command to
connect to a particular database, and the %%sql
magic command to create a
cell containing an SQL query to run against that database. See the JupyterLab documentation
for additional information on Jupyter magic commands.