Skip to content

Commit dc6e4d0

Browse files
authored
Update README.md
1 parent 10507b0 commit dc6e4d0

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

README.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,35 @@ The RoboCup Soccer Simulator Server (rcssserver) is a research and educational t
99

1010
For further reading, please check [the user's manual](https://rcsoccersim.readthedocs.io/).
1111

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
1341

1442
rcssserver is implemented by C++14 and depends some libraries.
1543
Make sure you have the required dependencies installed on your system:

0 commit comments

Comments
 (0)