Using pip

pip install ipydatatable

JupyterLab extension

If you have JupyterLab v3, there is nothing you else you need to do after installation. It wont work for Lab <= 2. If it doesnt work run the following

jupyter labextension install ipydatatable

Development installation

For a development installation (requires [Node.js](https://nodejs.org) and [Yarn version 1](https://classic.yarnpkg.com/)):

git clone https://github.com//ipydatatable.git
cd ipydatatable
pip install -e .
jupyter nbextension install --py --symlink --overwrite --sys-prefix ipydatatable
jupyter nbextension enable --py --sys-prefix ipydatatable

When actively developing your extension for JupyterLab, run the command:

jupyter labextension develop --overwrite ipydatatable

Then you need to rebuild the JS when you make a code change:

cd js
yarn run build

You then need to refresh the JupyterLab page when your javascript changes.