- Installs
asdf
- For
zsh
users, sets up~/.zlogin
for a ready-to-use experience - Uses
asdf
to install the languages of your choice (limited support, see Install languages)
TOOCS - The Opinionated One-Click Setups are a set of tools / ansible roles designed to setup a system in one click. They are a simple, reliable, way to setup a given tool. You can use them as is, or, inspecting their code, as a tutorial to follow step by step.
They are, as their name suggests, opinionated: while they guarantee to setup the given tool in one click, they do not guarantee consistency in how they achieve it, new releases might introduce breaking changes.
Read the code and make sure you understand what's happening!
This role is only working on MacOSX & Ubuntu/Debian.
When using this TOOCS on a user whose shell is zsh
, the TOOCS will automatically configure the ~/.zlogin
file. No further action is required.
If you are not using a framework, such as oh-my-zsh
, or if on starting your shell you get an error message like 'command not found: compinit', then add this line before the ones added by the TOOCS in your ~/.zlogin
file:
autoload -Uz compinit && compinit
For non-zsh
users, some manual setup is required. Depending on your OS and shell, run the following:
-
Bash on Ubuntu (and other Linux distros)
echo -e '\n. $HOME/.asdf/asdf.sh' >> ~/.bashrc echo -e '\n. $HOME/.asdf/completions/asdf.bash' >> ~/.bashrc
-
Bash on macOS
echo -e '\n. $HOME/.asdf/asdf.sh' >> ~/.bash_profile echo -e '\n. $HOME/.asdf/completions/asdf.bash' >> ~/.bash_profile
-
Fish
echo 'source ~/.asdf/asdf.fish' >> ~/.config/fish/config.fish mkdir -p ~/.config/fish/completions; and cp ~/.asdf/completions/asdf.fish ~/.config/fish/completions
Restart your shell so that PATH changes take effect. (Opening a new terminal tab will usually do it.)
Also if you're having issues with it not detecting the shims you've installed it's most-likely due to the sourcing of above asdf.bash or asdf.fish not being at the bottom of your ~/.bash_profile, ~/.zshrc, or ~/.config/fish/config.fish. It needs to be sourced after you've set your $PATH.
Source: official 'asdf' setup
After installing asdf
, this TOOCS can automatically install different versions of the languages of your choice. It will take care of installing the prerequisite dependencies for each language, and install the different versions, usually prefering to compile from source rather than downloading the pre-compiled binaries.
The variable languages_to_install
is a list containing all the languages to install, along with the specific versions.
-
- LANG: - x.x.x - y.y.y
Where
LANG
is the language name, andx.x.x / y.y.y
are version numbers. -
languages_to_install: - erlang: - 21.1.14 - 20.3.8.9 - elixir: - 1.7.4
In this example, both versions of
erlang
will be installed beforeelixir
is installed. This is convenient sinceelixir
requireserlang
to be compiled. -
- The first version of the list will be set as
global
- For languages supporting multiple simultaneous
global
, all versions from the list, in order, will be set as global (ex: python)
languages_to_install: - erlang: - 21.1.14 - 20.3.8.9 - python: # Support for multiple `global` - 3.7.0 - 2.6.6 - 2.7.15
In this example, after running the TOOCS, the shell will be configured as follow:
- The
erl
command (erlang
) will point to version21.1.14
- The
python
command will point to version3.7.0
python
supporting multipleglobal
, the following commands will also be made available:python3.7
/pip3.7
python2.7
/pip2.7
python2.6
/pip2.6
python3
/pip3
=> Latestpython3
version:python3.7
/pip3.7
python2
/pip2
=> Latestpython2
version:python2.7
/pip2.7
- The first version of the list will be set as
- Python
- Support for multiple
global
versions - On Debian stretch (and Ubuntu bionic), only python versions
>= 2.7.13
and>= 3.5.3
can be installed automatically. Earlier versions can later be manually installed, but it needs a workaround at the moment. See: Pyenv - Common Build Problems - OpenSSL
- Support for multiple
- Erlang
- Compiled with documentation but no
jinterface
- Compiled with documentation but no
- Elixir
- Requires
erlang
- Explicitely compiled from source
- /!\ Make sure the current version of
erlang
is supported by the version ofelixir
to install /!\- Ex:
elixir v1.6.6
is not compatible witherlang 21
! To compileelixir v1.6.6
,erlang 20
must be used.
- Ex:
- Requires
-
asdf
version to install- Default:
v0.6.2
-
- If
True
will only installasdf
without setting up the shell - Default:
False
- If
-
- List of languages, and versions, to install using
asdf
. See Install Languages - Default:
[]
- List of languages, and versions, to install using
- hosts: sandbox
tasks:
- include_role:
name: TOOCS.asdf
# OR
- hosts: sandbox
tasks:
- include_role:
name: TOOCS.asdf
vars:
asdf_version: v0.6.1
skip_shell_setup: True
# OR
- hosts: sandbox
tasks:
- include_role:
name: TOOCS.asdf
vars:
languages_to_install:
- python:
- 3.7.0
- 2.7.15
- 2.6.6
- erlang:
- 20.3.8.9
- 21.1.4
- elixir:
- 1.7.4
- 1.6.6
MIT
Follow me on Twitter: @ThisIsFlorianK
Find out more about my work: Florian Kempenich - Personal Website