mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2025-01-03 21:09:59 +01:00
19 lines
304 B
Markdown
19 lines
304 B
Markdown
---
|
|
title: macOS
|
|
weight: 21
|
|
---
|
|
|
|
```
|
|
cd
|
|
git clone https://github.com/microsoft/vcpkg
|
|
cd vcpkg
|
|
git checkout 2023.04.15
|
|
./bootstrap-vcpkg.sh
|
|
brew install nasm yasm
|
|
./vcpkg install libvpx libyuv opus aom
|
|
git clone https://github.com/rustdesk/rustdesk
|
|
cd rustdesk
|
|
export VCPKG_ROOT=$HOME/vcpkg
|
|
cargo run
|
|
```
|