diff --git a/website/docs/quick-start/install-atmos.mdx b/website/docs/quick-start/install-atmos.mdx
index 697f1d585..e27b33dfd 100644
--- a/website/docs/quick-start/install-atmos.mdx
+++ b/website/docs/quick-start/install-atmos.mdx
@@ -137,6 +137,64 @@ Atmos has native packages for macOS and every major Linux distribution. We also
when running `atmos version`.
+
+ #### Install with asdf
+
+ Install plugin dependencies as listed in [asdf-atmos repository](https://github.com/cloudposse/asdf-atmos#dependencies):
+
+ ```shell
+ apt-get update && apt-get install -y bash curl tar
+ ```
+
+ Install the plugin:
+
+ ```shell
+ asdf plugin add atmos https://github.com/cloudposse/asdf-atmos.git
+ ```
+
+ Install a specified version:
+
+ ```shell
+ asdf install atmos
+ ```
+ Alternatively, create a `.tool-versions` file in your project to specify a consistent version for the users:
+
+
+
+ atmos
+
+
+
+
+ Then, run `asdf install` in the same directory.
+
+ __NOTE:__ Don't have `asdf`? Install it first from [here](https://asdf-vm.com/guide/getting-started.html)
+
+
+
+ #### Install with Mise
+
+ Install a specified version:
+
+ ```shell
+ mise use atmos@
+ ```
+
+ Alternatively, create a `.mise.toml` file in your repository to specify a consistent version for the users:
+
+
+
+ [tools]
+ atmos = ''
+
+
+
+
+ Then, run `mise install` in the same directory.
+
+ __NOTE:__ Don't have `mise`? Install it first from [here](https://mise.jdx.dev/getting-started.html)
+
+
#### Build from Source