From 395351ad7e455ddc1550f8f62503513c117db0bc Mon Sep 17 00:00:00 2001 From: Iain Date: Sat, 5 Dec 2020 01:07:25 +1300 Subject: [PATCH] exenv: add page (#4992) --- pages/common/exenv.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/exenv.md diff --git a/pages/common/exenv.md b/pages/common/exenv.md new file mode 100644 index 000000000..1bda5e6f7 --- /dev/null +++ b/pages/common/exenv.md @@ -0,0 +1,24 @@ +# exenv + +> A tool to easily install Elixir versions and manage application environments. +> More information: . + +- Display a list of installed versions: + +`exenv versions` + +- Use a specific version of Elixir across the whole system: + +`exenv global {{version}}` + +- Use a specific version of Elixir for the current application/project directory: + +`exenv local {{version}}` + +- Show the currently selected Elixir version: + +`exenv {{version}}` + +- Install a version of Elixir (requires `elixir-build` plugin ): + +`exenv install {{version}}`