JuliaGizmos / Interact.jl

Interactive widgets to play with your Julia code
Other
520 stars 75 forks source link

Error installing Jupyter nbextensions #359

Closed sbacelar closed 4 years ago

sbacelar commented 4 years ago

I'm on Windows 10 and using Julia 1.4. After doing using WebIO on the REPL if I do julia> WebIO.install_jupyter_nbextensions()

I get:

ERROR: UndefVarError: install_jupyter_nbextensions not defined
Stacktrace:
 [1] getproperty(::Module, ::Symbol) at .\Base.jl:26
 [2] top-level scope at REPL[9]:1
twavv commented 4 years ago

There's no s at the end of it.

# For classic notebook
WebIO. install_jupyter_nbextension()

# For Jupyter Lab
WebIO.install_jupyter_labextension()

Did you copy that command from documentation somewhere or just mis-type? If the former, please let me know where so we can fix it. :^)

sbacelar commented 4 years ago

Sorry. I have just mistype install_jupyter_nbextension. But I have a problem with install_jupyter_labextension() so I am going to open a new issue.