You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I seem to still be having an issue that was supposedly already fixed #2959
Basically, Pluto homescreen opens but nothing loads. My recent activity nor the example notebooks. Everything just shows "Loading..."
I have tried on Julia 1.11 RC3 and Julia 1.10.5 as well as with Chrome and Edge browsers. The machine is running Windows 11 and I try to keep things up to date.
I am on Pluto 0.19.46
The text was updated successfully, but these errors were encountered:
Is there any information in the terminal where you launched Pluto?
Try to do the following before updating Pluto (0.19.47 was just released):
Can you share the output of:
import Pkg; Pkg.status(mode=Pkg.PKGMODE_MANIFEST)
Could you share a log of all files that are available in the Pluto installation folder? It sounds like you might have an incomplete installation.
import Pluto
for (root, dirs, files) inwalkdir(Pluto.project_relative_path(""))
println("Directories in $root")
for dir in dirs
println(joinpath(root, dir)) # path to directoriesendprintln("Files in $root")
for file in files
println(joinpath(root, file)) # path to filesendend
I seem to still be having an issue that was supposedly already fixed #2959
Basically, Pluto homescreen opens but nothing loads. My recent activity nor the example notebooks. Everything just shows "Loading..."
I have tried on Julia 1.11 RC3 and Julia 1.10.5 as well as with Chrome and Edge browsers. The machine is running Windows 11 and I try to keep things up to date.
I am on Pluto 0.19.46
The text was updated successfully, but these errors were encountered: