bevy/docs/linux_dependencies.md
Tom Bebb c9000deafa
Add solus deps to linux_dependencies doc (#331)
Co-authored-by: Tom Bebbington <tophattedcoder@gmail.com>
2020-08-25 16:50:44 -07:00

26 lines
534 B
Markdown

# Installing Linux dependencies
This page lists the required dependencies to build a Bevy project on your Linux machine.
If you don't see your distro present in the list, feel free to add the instructions in this document.
## Ubuntu 20.04
```bash
sudo apt-get install libx11-dev libasound2-dev
```
## Fedora 32
```bash
sudo dnf install gcc-c++ libX11-devel alsa-lib-devel
```
## Arch / Manjaro
```bash
sudo pacman -S libx11 pkgconf alsa-lib
```
## Solus
```bash
sudo eopkg install pkg-config libx11-devel g++ alsa-lib-devel
```