diff --git a/Common-Issues.md b/Common-Issues.md index de591a4..19a476f 100644 --- a/Common-Issues.md +++ b/Common-Issues.md @@ -3,12 +3,12 @@ ## Failed to install on Steam deck If you failed to install the launcher on your Steam deck with the command provided in the readme, you're in the right place. -SteamOS can't compile the launcher because some dependecies are missing from OS, in this case you have two solution to fix this issue : +SteamOS can't compile the launcher because some dependecies are missing from the OS, in this case you have two solution to fix this issue : 1. Find and install every package you need in order to compile the launcher with the error provided by the compiler or 2. You can use the script we made to compile the launcher with a different environment -we will chose the second options here, I will not enter on the detail during this tutorial because it's just for troubleshooting. +we will chose the second options here, I will not enter on the detail during this tutorial because it's just for troubleshooting purpose. *** @@ -33,4 +33,24 @@ bash <(curl -s https://raw.githubusercontent.com/ALEZ-DEV/Babylonia-terminal/mas ``` ### !! Important !! -the script will ask you if you are on steam deck or not, please enter `y` \ No newline at end of file +the script will ask you if you are on steam deck or not, please enter `y` + +## Failed to install on any other distro than SteamOS + +If you failed to install the launcher on your distribution with the command provided in the readme, you're in the right place. +Your distro can't compile the launcher because some dependecies are missing from the OS, in this case you have two solution to fix this issue : +1. Find and install every package you need in order to compile the launcher with the error provided by the compiler (take some time but okay) +or +2. You can use the script we made to compile the launcher with a different environment + +we will chose the second options here, I will just indicate what app you need to install in order to run the script, you're the one who need to figure it out how to install it (With your package manager for exemple) + +*** +1. You need to install [Rust](https://www.rust-lang.org/tools/install) +2. You need to install [Podman](https://podman.io/docs/installation) +3. You can then run the script by running the following command : +```bash +bash <(curl -s https://raw.githubusercontent.com/ALEZ-DEV/Babylonia-terminal/master/build.sh) +``` + +