Calico plugin for IPython / Jupyter 4.0

Issue #220 resolved
t3kcit created an issue

Is the calico extension still working for ipython 4.0? It uses the deprecated nbextension. I tried the following:

%install_ext https://bitbucket.org/ipre/calico/downloads/calico-spell-check-1.0.zip

Installed calico-spell-check-1.0.zip. To use it, type: %load_ext calico-spell-check-1.0

%load_ext calico-spell-check-1.0

ImportError: No module named calico-spell-check-1.0

%load_ext calico-spell-check

ImportError: No module named calico-spell-check

I also tried

%%javascript
require(['base/js/utils'],
function(utils) {
   utils.load_extensions('calico-spell-check', 'calico-document-tools', 'calico-cell-tools');
});

but that has no effect.

Comments (4)

  1. t3kcit reporter

    Ah, I was confusing notebook extensions and IPython extensions I guess. I ran

    ipython install-nbextension --user https://bitbucket.org/ipre/calico/downloads/calico-cell-tools-1.0.zip ipython install-nbextension --user https://bitbucket.org/ipre/calico/downloads/calico-spell-check-1.0.zip ipython install-nbextension --user https://bitbucket.org/ipre/calico/downloads/calico-document-tools-1.0.zip

    and now I have some JS in /home/myuser/.local/share/jupyter/nbextensions.

    Still running %%javascript require(['base/js/utils'], function(utils) { utils.load_extensions('calico-spell-check', 'calico-document-tools', 'calico-cell-tools'); }); has no effect. Is that a caching issue?

  2. Log in to comment