How to Install Livebook With Asdf
I’m reading this book Machine learning in Elixir so I tested elixir livebook on my macos using the .dmg installer , and it’s running smoothly. I decided to install it locally on my computer to know what is happening behind the scenes, so it’s straightforward; only need to run these commands: # install or update rebar and hex mix do local.rebar --force, local.hex --force # install as executable livebook mix escript.install hex livebook # reshim asdf elixir asdf reshim elixir # Start the Livebook server anywhere livebook server # See all the configuration options livebook server --help All of these install instructions are already explained in the README of livebook. ...