Add common plugin dependencies to getting started docs (#510)

* Add extra plugin dependencies

I found on a fresh Ubuntu install test that it pays to have unzip and curl installed for some of the asdf plugins to install properly so it seems to make sense adding these here to give a nicer getting started experience.

I do not have brew or spack handy to test but from what I can see these packages should exist.

* Update core-manage-asdf-vm.md
This commit is contained in:
Stefan Sedich 2019-04-09 16:15:15 -07:00 committed by James Hegedus
parent df1f72ed38
commit 59a9c03267

View File

@ -108,7 +108,8 @@ Installation via Homebrew:
```shell ```shell
brew install \ brew install \
coreutils automake autoconf openssl \ coreutils automake autoconf openssl \
libyaml readline libxslt libtool unixodbc libyaml readline libxslt libtool unixodbc \
unzip curl
``` ```
Installation via Spack: Installation via Spack:
@ -116,7 +117,8 @@ Installation via Spack:
```shell ```shell
spack install \ spack install \
coreutils automake autoconf openssl \ coreutils automake autoconf openssl \
libyaml readline libxslt libtool unixodbc libyaml readline libxslt libtool unixodbc \
unzip curl
``` ```
#### ** Ubuntu ** #### ** Ubuntu **
@ -125,7 +127,8 @@ spack install \
sudo apt install \ sudo apt install \
automake autoconf libreadline-dev \ automake autoconf libreadline-dev \
libncurses-dev libssl-dev libyaml-dev \ libncurses-dev libssl-dev libyaml-dev \
libxslt-dev libffi-dev libtool unixodbc-dev libxslt-dev libffi-dev libtool unixodbc-dev \
unzip curl
``` ```
#### **Fedora** #### **Fedora**
@ -134,7 +137,8 @@ sudo apt install \
sudo dnf install \ sudo dnf install \
automake autoconf readline-devel \ automake autoconf readline-devel \
ncurses-devel openssl-devel libyaml-devel \ ncurses-devel openssl-devel libyaml-devel \
libxslt-devel libffi-devel libtool unixODBC-devel libxslt-devel libffi-devel libtool unixODBC-devel \
unzip curl
``` ```
<!-- tabs:end --> <!-- tabs:end -->