File tree Expand file tree Collapse file tree 5 files changed +44
-9
lines changed Expand file tree Collapse file tree 5 files changed +44
-9
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ const en = [
25
25
items : [
26
26
{ text : "Configuration" , link : "/manage/configuration" } ,
27
27
{ text : "All Commands" , link : "/manage/commands" } ,
28
+ { text : "Dependencies" , link : "/manage/dependencies" } ,
28
29
{
29
30
text : "Plugin Shortname Index" ,
30
31
link : "https://github.com/asdf-vm/asdf-plugins" ,
Original file line number Diff line number Diff line change @@ -113,7 +113,8 @@ lines you removed or commented out.
113
113
your new asdf installation is working correctly!** After upgrade there are
114
114
various files you can remove from the old Bash-script based versions of asdf.
115
115
Most of the files in your data directory (typically ` ~/.asdf/ ` ) can be removed.
116
- The only directories that must be ** kept** are:
116
+ Note that you don't have to do this. There is no harm in keeping the files from
117
+ old versions of asdf around. The only directories that must be ** kept** are:
117
118
118
119
* ` downloads/ `
119
120
* ` installs/ `
Original file line number Diff line number Diff line change
1
+ # Dependencies
2
+
3
+ This list is for asdf version 0.16.0 and greater. Older versions of asdf have
4
+ additional dependencies.
5
+
6
+ asdf itself requires the following to be installed:
7
+
8
+ * Bash version ` 3.2.48 `
9
+ * Git version ` 1.7.7.2 `
10
+
11
+ ::: tip Note
12
+
13
+ Note that asdf plugins may require additional programs to be installed before
14
+ they can be used. Read the plugin's documentation and verify you have all of
15
+ the plugin's dependencies installed before installing it.
16
+
17
+ :::
18
+
19
+ ## Install
20
+
21
+ If you need to manually install dependencies for asdf run the command for your
22
+ OS below.
23
+
24
+ <!-- @include: @/parts/install-dependencies-cmds.md-->
25
+
26
+ ::: tip Note
27
+
28
+ ` sudo ` may be required depending on your system configuration.
29
+
30
+ :::
Original file line number Diff line number Diff line change
1
+ | OS | Package Manager | Command |
2
+ | ----- | --------------- | ---------------------------------- |
3
+ | linux | Aptitude | ` apt install git bash ` |
4
+ | linux | DNF | ` dnf install git bash ` |
5
+ | linux | Pacman | ` pacman -S git bash ` |
6
+ | linux | Zypper | ` zypper install git bash ` |
7
+ | macOS | Homebrew | ` brew install coreutils git bash ` |
8
+ | macOS | Spack | ` spack install coreutils git bash ` |
Original file line number Diff line number Diff line change 2
2
3
3
asdf primarily requires ` git ` . Here is a _ non-exhaustive_ list of commands to run for _ your_ package manager (some might automatically install these tools in later steps).
4
4
5
- | OS | Package Manager | Command |
6
- | ----- | --------------- | ---------------------------------- |
7
- | linux | Aptitude | ` apt install git ` |
8
- | linux | DNF | ` dnf install git ` |
9
- | linux | Pacman | ` pacman -S git ` |
10
- | linux | Zypper | ` zypper install git ` |
11
- | macOS | Homebrew | ` brew install coreutils git ` |
12
- | macOS | Spack | ` spack install coreutils git ` |
5
+ <!-- @include: @/parts/install-dependencies-cmds.md-->
13
6
14
7
::: tip Note
15
8
16
9
` sudo ` may be required depending on your system configuration.
17
10
18
11
:::
12
+
13
+ Please see the [ Dependencies page] ( /manage/dependencies ) for more information.
You can’t perform that action at this time.
0 commit comments