I use Elixir 1.14.2 here. I recommend using asdf and the Elixir asdf plugin to install it.
To install Elixir's Livebook (given Elixir 1.14+ installation):
mix do local.rebar --force, local.hex --force
mix escript.install hex livebook
# if using asdf:
# asdf reshim elixir
Running:
livebook server
I'm using Julia 1.8.3 here.
You can download Julia here. After that, put it in your PATH
, and you're done.
I use Python 3.10 + pipenv for managing Python dependencies.
To create a venv:
pipenv sync --dev
You can get the path to the created venv with pipenv --venv
.
If you're using VS Code, use Python: Select Interpreter
from the command pallete to select the venv you've just
created.