-
-
Notifications
You must be signed in to change notification settings - Fork 379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Julia Interact Widgets not working #796
Comments
Thank you for opening your first issue in this project! Engagement like this is essential for open source projects! 🤗 |
@paulnakroshis can you test it with the web app to confirm that it is an issue specific to Desktop app or not. here are the instructions. also checkout this. |
Thanks—I’ll get to this when possible…swamped grading papers now:-(
…-p
Paul Nakroshis
Chair & Associate Professor
Department of Physics, Univ. of Southern Maine
96 Falmouth Street, PO Box 9300, Portland ME 04103
***@***.*** | mainesight.com | paulnakroshis.github.io
+1.207.780.4158 | +1.207.449.7531 | portlandphysics.me
On Mar 16, 2024, at 4:47 PM, Mehmet Bektas ***@***.***> wrote:
@paulnakroshis <https://github.com/paulnakroshis> can you test it with the web app to confirm that it is an issue specific to Desktop app or not. here <https://github.com/jupyterlab/jupyterlab-desktop/blob/master/troubleshoot.md#launching-jupyterlab-server-manually> are the instructions. also checkout this <https://github.com/jupyterlab/jupyterlab-desktop/blob/master/troubleshoot.md#Detecting-if-an-issue-is-specific-to-JupyterLab-Desktop-or-not>.
—
Reply to this email directly, view it on GitHub <#796 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAZZ6RRVWQS7E5N3DIIW5HTYYSVVBAVCNFSM6AAAAABEWNKKC2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDAMBSGEZDKOJYGM>.
You are receiving this because you were mentioned.
|
@paulnakroshis Have you tried the web app with this case? Thanks! |
@paulnakroshis Any update regarding this? |
Hi Jason,
I obtain the following error:
I am using the most recent version of Jupyterlab-desktop on an M2 MacBook Pro and using the bundled python environment:
Any thoughts? |
Have you tried installing JupyterLab separately from JupyterLab Desktop, such as in a separate Conda environment? If so, does this issue recur? |
@paulnakroshis Any update on whether this issue is reproducible in JupyterLab (without the Desktop app)? If you can reproduce it without Lab Desktop, we should probably move this to https://github.com/jupyterlab/jupyterlab. |
@paulnakroshis I haven't received updates from you about this issue, so I'm going to close it. If you can reproduce the problem in JupyterLab by itself (not just in JupyterLab Desktop) please open an issue here: https://github.com/jupyterlab/jupyterlab/issues/ |
Description
Julia Interact widgets are not displaying in Jupyterlab desktop.
Reproduce
This is an example of a @manipulate slider which doesn't work with my Jupyterlab desktop installation:
using Plots
using Interact
u(x, t) = 1/2 * (sin(x + t) - sin(t - x))
x = 1:0.01:5
@manipulate for tᵢ in 0:0.1:1
y = [u(x[i], tᵢ) for i in 1:length(x)]
plot(x, y)
end
In the output cell only a plot can be seen, but the slider doesn't show up.
I do get the following warning:
┌ Warning: attempting to remove probably stale pidfile
│ path = "/Users/hiddenusername/.jlassetregistry.lock"
└ @ Pidfile ~/.julia/packages/Pidfile/DDu3M/src/Pidfile.jl:260
Expected behavior
I expected a plot with a slider to allow me to manipulate the plot.
Context
Troubleshoot Output
Browser Output (required for interface issues after loading)
Logs (required for issues with loading, server and startup)
The text was updated successfully, but these errors were encountered: