-
Notifications
You must be signed in to change notification settings - Fork 76
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
Interact.jl widgets not getting rendered on jupyter-notebook #372
Comments
Did you restart Jupyter server and open a new notebook and try? |
@shashi Yes. I reproduced this issue with a new notebook (after restarting the Jupyter server) in which the only content were the cells containing the code shown on my initial post. |
I encountered a possibly similar issue. First of all, I noticed that the library worked when I ran it on my local machine. The trouble started when I tried to use In my browser's devtools I noticed that several requests return 404, e.g. for I don't know if it is possible to configure this somewhere, or if the For now I have added the following temporary fix into my nginx config: server {
rewrite ^/assetserver/(.*) /jupyter/assetserver/$1 break;
[...]
} |
I encountered the exact same issue, I haven't solved it fully yet, but it seems related to (automatically) rendering WebIO nodes. When I explicitly import WebIO, I can make it show the slider: However, this doesn't solve all my Interact issues. |
Ok I see now that my Interact and InteractBase builds are failing. It fails to download the css for Interact: Interact issue 333 seems related. |
Ok fixed it by getting the builds working. I followed the solution from the [discourse post] to get curl.exe working (https://discourse.julialang.org/t/problem-with-curl-exe-windows-and-package-installation/29525/53):
Now the tutorial works directly: |
I did the same thing on macOS by creating a I'm closing this issue now. |
Hi! I'm just getting started with Interact, so I'm sorry if this issue is due to my inexperience with the Julia ecosystem.
I have a notebook with the following code:
resulting in the following:
I'm on macOS 10.15.6 with Julia 1.5 installed with Homebrew. I installed the nbextension as instructed in the README as well. My configurations is:
What could be causing this? Do you have any suggestion as to what I could do to debug this? I'll be happy to give any more information if necessary.
The text was updated successfully, but these errors were encountered: