File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,35 @@ The RoboCup Soccer Simulator Server (rcssserver) is a research and educational t
9
9
10
10
For further reading, please check [ the user's manual] ( https://rcsoccersim.readthedocs.io/ ) .
11
11
12
- ## :soccer : Quick Start
12
+ There are three different solutions to run the RoboCup Soccer Simulator Server.
13
+ - Download the AppImage release and run (Linux, Windows WSL)
14
+ - Build from source and run (Linux, Windows WSL)
15
+ - Use Docker Image
16
+
17
+ ## :gift_heart : AppImage
18
+ #### Download AppImage
19
+ Download "rcssserver-x86_64-?.?.?.AppImage" from the (release page)[ https://github.com/CLSFramework/rcssserver/releases ] / latest version
20
+ or use the below command to download the latest version of AppImage:
21
+ ``` bash
22
+ wget $( curl -s https://api.github.com/repos/clsframework/rcssserver/releases/latest | grep -oP ' "browser_download_url": "\K(.*rcssserver-x86_64-.*\.AppImage)' | head -n 1)
23
+ ```
24
+
25
+ #### Install dependency and update permission
26
+
27
+ then you need to update the permission of the AppImage and install fuse:
28
+ ``` bash
29
+ chmod +x rcssserver-x86_64-* .AppImage
30
+ sudo apt-get install fuse
31
+ ```
32
+
33
+ #### Run
34
+
35
+ to run the AppImage:
36
+ ``` bash
37
+ ./rcssserver-x86_64-? .? .? .AppImage
38
+ ```
39
+
40
+ ## :soccer : Build From Source
13
41
14
42
rcssserver is implemented by C++14 and depends some libraries.
15
43
Make sure you have the required dependencies installed on your system:
You can’t perform that action at this time.
0 commit comments