docs: download

This commit is contained in:
Nikesh Parajuli
2024-10-21 22:41:50 -04:00
parent 22282b83bd
commit 25bb0ae54f
3 changed files with 101 additions and 9 deletions
+94
View File
@@ -0,0 +1,94 @@
---
title: Download
description: Download Msty for Windows, Mac, and Linux
---
Find the right Msty installer for your operating system and hardware. Whether you're on Windows, Mac, or Linux, we offer versions optimized for both CPU and GPU setups.
::tabs{variant="card"}
::div{label="Windows" icon="iconoir:windows"}
### Windows
Choose between two versions depending on your hardware.
#### CPU-Only Version
Ideal for systems without a dedicated GPU.
:button-link[Download Msty (x64 CPU)]{left-icon="tabler:download" variant="outline" to="https://assets.msty.app/prod/latest/win/cpu/Msty_x64.exe" self}
---
#### GPU Version
Optimized for systems with a [compatible AMD or NVIDIA GPU](/getting-started/gpus-support), offering improved performance.
:button-link[Download Msty (x64 GPU)]{left-icon="tabler:download" variant="outline" to="https://assets.msty.app/prod/latest/win/auto/Msty_x64.exe" self}
::
::div{label="Mac" icon="hugeicons:apple"}
### Mac
We offer installers for both Apple Silicon and Intel-based Macs.
#### Apple Silicon
For M1, M2 and M3 chip-based Macs.
:button-link[Download Msty (M1/M2/M3)]{left-icon="tabler:download" variant="outline" to="https://assets.msty.app/prod/latest/mac/Msty_arm64.dmg" self}
---
#### Intel
For Macs with Intel processors.
:button-link[Download Msty (Intel)]{left-icon="tabler:download" variant="outline" to="https://assets.msty.app/prod/latest/mac/Msty_x64.dmg" self}
::
::div{label="Linux" icon="ph:linux-logo"}
### Linux
Download the version that best fits your setup.
#### AppImage (CPU Version)
A universal package that runs on most Linux distributions, optimized for CPUs.
:button-link[Download Msty (AppImage CPU)]{left-icon="tabler:download" variant="outline" to="https://assets.msty.app/prod/latest/linux/amd64/Msty_x86_64_amd64.AppImage" self}
---
#### Deb Installer (CPU Version)
Specifically for Debian-based distributions (like Ubuntu) with CPU optimization.
:button-link[Download Msty (.deb CPU)]{left-icon="tabler:download" variant="outline" to="https://assets.msty.app/prod/latest/linux/amd64/Msty_amd64_amd64.deb" self}
---
#### AppImage (AMD GPU - ROCm Version)
For systems with AMD GPUs using ROCm, available as a universal AppImage.
:button-link[Download Msty (AppImage AMD GPU)]{left-icon="tabler:download" variant="outline" to="https://assets.msty.app/prod/latest/linux/rocm/Msty_x86_64_rocm.AppImage" self}
---
#### Deb Installer (AMD GPU - ROCm Version)
A ROCm-optimized version for Debian-based distributions.
:button-link[Download Msty (.deb AMD GPU)]{left-icon="tabler:download" variant="outline" to="https://assets.msty.app/prod/latest/linux/rocm/Msty_amd64_rocm.deb" self}
::
::
## Installation Instructions
After downloading the appropriate installer for your system, follow the instructions below:
::tabs{variant="card"}
::div{label="Windows" icon="iconoir:windows"}
### Windows
Double-click the installer and follow the setup wizard.
::
::div{label="Mac" icon="hugeicons:apple"}
### Mac
Open the downloaded `.dmg` file and drag Msty to your Applications folder.
::
::div{label="Linux" icon="ph:linux-logo"}
### Linux
Read [how to install Msty on Linux.](/how-to-guides/install-msty-on-linux)
::
::
@@ -7,7 +7,7 @@ Follow the instructions below to install Msty's .AppImage or .deb installer on y
## Download Msty
If you haven't downloaded Msty already, get started by <a href="https://msty.app?ref=docs" target="_blank">downloading</a> it first.
If you haven't downloaded Msty already, get started by [downloading](/getting-started/download) it first.
## Installing Msty
+6 -8
View File
@@ -12,16 +12,14 @@ export default defineNuxtConfig({
head: {
script: [
{
'src': 'https://insights.msty.app/js/script.tagged-events.file-downloads.js',
'defer': true,
'data-domain': 'docs.msty.app',
'file-types': 'png,webp',
src: "https://insights.msty.app/js/script.tagged-events.file-downloads.js",
defer: true,
"data-domain": "docs.msty.app",
"file-types": "png,webp,dmg,zip,mp4,exe,deb,AppImage",
} as any,
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
],
title: 'Msty Docs',
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
title: "Msty Docs",
},
},
});