Pluto utterly refuses to update #1372
-
] > update Pluto > st - I still get 14.7. So I tried the old remove and reinstall: ] > remove Pluto > add Pluto. I still get 14.7. No error messages. It updates clean but just won't go to 15.1 no matter how many times I do this. Yes, I shut down and restarted Julia and I keep getting the annoying "update to 15.1" message every time I start Pluto. I'm totally stumped. Using Windows 10, latest ver. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Did you try adding Pluto to a completely new environemnt without other packages? Try running this code (in case you didn't already try) import Pkg
Pkg.activate(temp=true)
Pkg.add("Pluto") |
Beta Was this translation helpful? Give feedback.
-
This means that you have other packages installed that limit Pluto's latest version. Try |
Beta Was this translation helpful? Give feedback.
Did you try adding Pluto to a completely new environemnt without other packages?
Usually problems with updating packages are coming from conflicts between package versions in the same environmnt.
Try running this code (in case you didn't already try)