You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-5Lines changed: 8 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,8 @@
1
1
# Quick start
2
2
## Installation
3
-
Install the pre-requisites and the RoboCup Soccer 2D Platform using the commands below:
3
+
Install the pre-requisites using the command below:
4
4
```Bash
5
5
sudo apt-get install fuse #Used to run AppImages
6
-
pushd scripts
7
-
sh download-rcssserver.sh #install RoboCup Server
8
-
popd
9
6
```
10
7
Clone this repository & install the required python libraries (such as gRPC). Don't forget to activate your virtual environment!
11
8
```Bash
@@ -14,10 +11,16 @@ cd sample-playmaker-server-python-grpc
14
11
# Activate venv/anaconda before this step!
15
12
pip install -r requirements.txt
16
13
```
14
+
To download RoboCup Soccer 2D Platform using the commands below:
15
+
```Bash
16
+
pushd scripts
17
+
sh download-rcssserver.sh #install RoboCup Server
18
+
popd
19
+
```
17
20
Next, install the soccer proxy, which uses C++ to read and pre-processes state data and passes them to the Python server (this project) for decision-making.
18
21
```Bash
19
22
pushd scripts
20
-
sh download-proxy.sh.sh#install C++ proxy
23
+
sh download-proxy.sh #install C++ proxy
21
24
popd
22
25
```
23
26
Finally, download the monitor from [the original repository](https://github.com/rcsoccersim/rcssmonitor/releases) in order to view the games.
0 commit comments