From cbc1fbfa476417f0f3fed8a0d57d30014752b210 Mon Sep 17 00:00:00 2001 From: Emmanuel Harel Date: Wed, 17 Sep 2025 15:25:12 +0200 Subject: [PATCH 1/5] For Linux distribution since Ubuntu 21.04 for example a warning is displayed during installation. A simple message not to worry about it is simply added at that point of the installation. --- 10_Getting_Started/15_Binaries/10_Binaries_instructions.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/10_Getting_Started/15_Binaries/10_Binaries_instructions.md b/10_Getting_Started/15_Binaries/10_Binaries_instructions.md index b1fccad0a..47cbe5694 100644 --- a/10_Getting_Started/15_Binaries/10_Binaries_instructions.md +++ b/10_Getting_Started/15_Binaries/10_Binaries_instructions.md @@ -15,7 +15,11 @@ If you require a specific version of SOFA, you can also find previous releases o ## Install -If you downloaded an installer file, simply run the file, and follow the installation process as you would for any other software application. This will ensure that SOFA is properly installed on your system. +If you downloaded an installer file, simply run the file, and follow the installation process as you would for any other software application. This will ensure that SOFA is properly installed on your system. +If you see this message during the installation for a Linux distribution don't worry it will be explained later on: +``` +qt.qpa.plugin: Could not find the Qt platform plugin "wayland" +``` ## Run SOFA From 0f1af739e737d2960c3f6dec2711ea29cbec3977 Mon Sep 17 00:00:00 2001 From: Emmanuel Harel Date: Wed, 17 Sep 2025 16:14:48 +0200 Subject: [PATCH 2/5] Add few instructions to install SOFA quickly on linux --- .../15_Binaries/10_Binaries_instructions.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/10_Getting_Started/15_Binaries/10_Binaries_instructions.md b/10_Getting_Started/15_Binaries/10_Binaries_instructions.md index 47cbe5694..c0dee6a26 100644 --- a/10_Getting_Started/15_Binaries/10_Binaries_instructions.md +++ b/10_Getting_Started/15_Binaries/10_Binaries_instructions.md @@ -15,7 +15,13 @@ If you require a specific version of SOFA, you can also find previous releases o ## Install -If you downloaded an installer file, simply run the file, and follow the installation process as you would for any other software application. This will ensure that SOFA is properly installed on your system. +If you downloaded an installer file, simply run the file, and follow the installation process as you would for any other software application. This will ensure that SOFA is properly installed on your system. +If not just run this from a location where you want SOFA to be installed (replace the version by the one you want to use): +``` {.bash .optional} +curl -O https://github.com/sofa-framework/sofa/releases/download/v25.06.00/SOFA_v25.06.00_Linux-Python_3.12.run +chmod u+x SOFA_v25.06.00_Linux-Python_3.12.run +./SOFA_v25.06.00_Linux-Python_3.12.run +``` If you see this message during the installation for a Linux distribution don't worry it will be explained later on: ``` qt.qpa.plugin: Could not find the Qt platform plugin "wayland" From 23b4bc567c1230fb2f3609a5156336fd2769f55b Mon Sep 17 00:00:00 2001 From: Emmanuel Harel Date: Wed, 17 Sep 2025 16:36:52 +0200 Subject: [PATCH 3/5] Try to stick to a tree structure like the one documented here:https://sofa-framework.github.io/doc/getting-started/build/linux/ --- 10_Getting_Started/15_Binaries/10_Binaries_instructions.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/10_Getting_Started/15_Binaries/10_Binaries_instructions.md b/10_Getting_Started/15_Binaries/10_Binaries_instructions.md index c0dee6a26..c98f9afda 100644 --- a/10_Getting_Started/15_Binaries/10_Binaries_instructions.md +++ b/10_Getting_Started/15_Binaries/10_Binaries_instructions.md @@ -18,6 +18,8 @@ If you require a specific version of SOFA, you can also find previous releases o If you downloaded an installer file, simply run the file, and follow the installation process as you would for any other software application. This will ensure that SOFA is properly installed on your system. If not just run this from a location where you want SOFA to be installed (replace the version by the one you want to use): ``` {.bash .optional} +mkdir build +cd build curl -O https://github.com/sofa-framework/sofa/releases/download/v25.06.00/SOFA_v25.06.00_Linux-Python_3.12.run chmod u+x SOFA_v25.06.00_Linux-Python_3.12.run ./SOFA_v25.06.00_Linux-Python_3.12.run From 55ecf63c687215194d3b9241dc4d61fc318164cc Mon Sep 17 00:00:00 2001 From: Emmanuel harel Date: Fri, 19 Sep 2025 15:45:18 +0200 Subject: [PATCH 4/5] Update 10_Getting_Started/15_Binaries/10_Binaries_instructions.md Co-authored-by: Hugo --- 10_Getting_Started/15_Binaries/10_Binaries_instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/10_Getting_Started/15_Binaries/10_Binaries_instructions.md b/10_Getting_Started/15_Binaries/10_Binaries_instructions.md index c98f9afda..6ab1f8c55 100644 --- a/10_Getting_Started/15_Binaries/10_Binaries_instructions.md +++ b/10_Getting_Started/15_Binaries/10_Binaries_instructions.md @@ -24,7 +24,7 @@ curl -O https://github.com/sofa-framework/sofa/releases/download/v25.06.00/SOFA_ chmod u+x SOFA_v25.06.00_Linux-Python_3.12.run ./SOFA_v25.06.00_Linux-Python_3.12.run ``` -If you see this message during the installation for a Linux distribution don't worry it will be explained later on: +For Linux distributions, you might see the warning below due to Qt on wayland, you can ignore it: ``` qt.qpa.plugin: Could not find the Qt platform plugin "wayland" ``` From 365be9413cfb7893af155e3ca3c254b7912b863c Mon Sep 17 00:00:00 2001 From: Emmanuel Harel Date: Fri, 19 Sep 2025 16:13:18 +0200 Subject: [PATCH 5/5] Remove Linux only snnippet of code in the General Installation page --- .../15_Binaries/10_Binaries_instructions.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/10_Getting_Started/15_Binaries/10_Binaries_instructions.md b/10_Getting_Started/15_Binaries/10_Binaries_instructions.md index 6ab1f8c55..d5a6d30ca 100644 --- a/10_Getting_Started/15_Binaries/10_Binaries_instructions.md +++ b/10_Getting_Started/15_Binaries/10_Binaries_instructions.md @@ -16,14 +16,6 @@ If you require a specific version of SOFA, you can also find previous releases o ## Install If you downloaded an installer file, simply run the file, and follow the installation process as you would for any other software application. This will ensure that SOFA is properly installed on your system. -If not just run this from a location where you want SOFA to be installed (replace the version by the one you want to use): -``` {.bash .optional} -mkdir build -cd build -curl -O https://github.com/sofa-framework/sofa/releases/download/v25.06.00/SOFA_v25.06.00_Linux-Python_3.12.run -chmod u+x SOFA_v25.06.00_Linux-Python_3.12.run -./SOFA_v25.06.00_Linux-Python_3.12.run -``` For Linux distributions, you might see the warning below due to Qt on wayland, you can ignore it: ``` qt.qpa.plugin: Could not find the Qt platform plugin "wayland"