Skip to content

Commit 59a9c03

Browse files
stefansedichjthegedus
authored andcommitted
Add common plugin dependencies to getting started docs (asdf-vm#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
1 parent df1f72e commit 59a9c03

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

docs/core-manage-asdf-vm.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,17 @@ Installation via Homebrew:
108108
```shell
109109
brew install \
110110
coreutils automake autoconf openssl \
111-
libyaml readline libxslt libtool unixodbc
111+
libyaml readline libxslt libtool unixodbc \
112+
unzip curl
112113
```
113114

114115
Installation via Spack:
115116

116117
```shell
117118
spack install \
118119
coreutils automake autoconf openssl \
119-
libyaml readline libxslt libtool unixodbc
120+
libyaml readline libxslt libtool unixodbc \
121+
unzip curl
120122
```
121123

122124
#### ** Ubuntu **
@@ -125,7 +127,8 @@ spack install \
125127
sudo apt install \
126128
automake autoconf libreadline-dev \
127129
libncurses-dev libssl-dev libyaml-dev \
128-
libxslt-dev libffi-dev libtool unixodbc-dev
130+
libxslt-dev libffi-dev libtool unixodbc-dev \
131+
unzip curl
129132
```
130133

131134
#### **Fedora**
@@ -134,7 +137,8 @@ sudo apt install \
134137
sudo dnf install \
135138
automake autoconf readline-devel \
136139
ncurses-devel openssl-devel libyaml-devel \
137-
libxslt-devel libffi-devel libtool unixODBC-devel
140+
libxslt-devel libffi-devel libtool unixODBC-devel \
141+
unzip curl
138142
```
139143

140144
<!-- tabs:end -->

0 commit comments

Comments
 (0)