Ask Your Question
3

Interact in Jupyterlab vs Jupyter

asked 5 years ago

dsejas gravatar image

updated 0 years ago

FrédéricC gravatar image

Hello, Sage community!

I find Jupyterlab to be more comfortable than Jupyter, so I installed it with

sage -pip install jupyterlab

and I execute it with

sage -n jupyterlab

Everything work well, except when I try to execute an interact, in which case, no sliders, no selection boxes, etc. appear. However, if I use Jupyter with

sage -n jupyter

the interact works well.

Here is a minimal working example:

@interact
def const(k = slider(-5,5,0.1,1,label='Constant')):
    print(k)

In this particular case, I obtain in Jupyterlab just 1.00000000000000 without any controls, nor the possibility to change the value of k.

Can somebody explain why it is not possible to use interacts in Jupyterlab while it is possible in Jupyter?

Preview: (hide)

Comments

Thanks for reporting! This is now tracked at

slelievre gravatar imageslelievre ( 4 years ago )

Update: the ticket

was merged in Sage 9.2.beta11.

slelievre gravatar imageslelievre ( 4 years ago )

2 Answers

Sort by » oldest newest most voted
3

answered 4 years ago

slelievre gravatar image

Starting from Sage 9.2.beta11, you can install JupyterLab and its jupyterlab-widgets extension for Sage:

$ sage -i jupyterlab_widgets

and then the interact in the question works fine!

Preview: (hide)
link

Comments

Thank you very much, @slelievre! In order to help other users that have this problem, I am selecting your answer as correct.

dsejas gravatar imagedsejas ( 4 years ago )
3

answered 5 years ago

nbruin gravatar image

It looks like lab takes a different approach than notebook regarding javascript in output cells. It would be nice to have a more official source, but the following Q/A seems to contain some valuable info:

https://stackoverflow.com/questions/4...

it looks like there's some work to do once sagemath starts moving to lab in earnest.

Preview: (hide)
link

Comments

Thank you very much for your help, @nbruin! Although I had selected your answer as correct the first time, given the up-to-date answer by slelievre, I had to make a re-selection of answers, putting slelievre's answer as correct for the good of other users with the same problem.

dsejas gravatar imagedsejas ( 4 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 5 years ago

Seen: 1,754 times

Last updated: Sep 03 '20