How to upgrade Livebook v0.8.1 to v0.9

Hello,

I am currently running Livebook v0.8.1 on POP_OS. I installed Livebook originally using the instructions under Mix on the installation page ( https://github.com/livebook-dev/livebook#installation. Now I would like to upgrade to Livebook v0.9. How do I do that properly?

Thank you!

If you installed using the instructions under Mix on the installation page, you can git pull from the Github repo, change to the v0.9.0 git tag and then do something similar to the original instructions.

Here’s how that could be. First, open your terminal and go to the directory where you first cloned the Livebook git repo, then:

git pull
git checkout v0.9.0
mix deps.get --only prod
MIX_ENV=prod mix phx.server
2 Likes

I tried your suggestion and it worked perfectly!! Thank you!!