mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-04-27 19:26:09 -04:00
36 lines
1.8 KiB
Plaintext
36 lines
1.8 KiB
Plaintext
import { Tabs } from 'nextra/components'
|
|
|
|
# Installation
|
|
|
|
Precompiled binaries of the _GUI_ are available for most platforms. Simply download the appropriate binary for your system and follow the instructions.
|
|
|
|
<Tabs items={['Windows', 'macOS (Silicon)', 'macOS (Intel)', 'Linux (x86_64)']}>
|
|
<Tabs.Tab>
|
|
1. Download the latest release from GitHub [here](https://github.com/UnstoppableSwap/core/releases/download/1.0.0-rc.4/UnstoppableSwap_1.0.0-rc.4_x64-setup.exe)
|
|
2. Open the downloaded `.exe` installer
|
|
3. Follow the installation instructions
|
|
4. Open the `UnstoppableSwap` application from your Start menu
|
|
</Tabs.Tab>
|
|
<Tabs.Tab>
|
|
1. Download the latest release from GitHub [here](https://github.com/UnstoppableSwap/core/releases/download/1.0.0-rc.4/UnstoppableSwap_1.0.0-rc.4_aarch64.dmg)
|
|
2. Open the downloaded `.dmg` file
|
|
3. Drag the `UnstoppableSwap` icon to your Applications folder
|
|
4. Open the `UnstoppableSwap` application from your Applications folder
|
|
</Tabs.Tab>
|
|
<Tabs.Tab>
|
|
1. Download the latest release from GitHub [here](https://github.com/UnstoppableSwap/core/releases/download/1.0.0-rc.4/UnstoppableSwap_1.0.0-rc.4_x64.dmg)
|
|
2. Open the downloaded `.dmg` file
|
|
3. Drag the `UnstoppableSwap` icon to your Applications folder
|
|
4. Open the `UnstoppableSwap` application from your Applications folder
|
|
</Tabs.Tab>
|
|
<Tabs.Tab>
|
|
For other Linux distributions, you can download the AppImage and run it directly. It includes all dependencies and will work on most systems.
|
|
|
|
```bash filename="install.sh"
|
|
wget https://github.com/UnstoppableSwap/core/releases/download/1.0.0-rc.4/UnstoppableSwap_1.0.0-rc.4_amd64.AppImage
|
|
chmod +x UnstoppableSwap_1.0.0-rc.4_amd64.AppImage
|
|
./UnstoppableSwap_1.0.0-rc.4_amd64.AppImage
|
|
```
|
|
</Tabs.Tab>
|
|
</Tabs>
|