File size: 688 Bytes
6c50d1f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Requirements
### Operating system
We suggest to run RestTestGen on Ubuntu. The current version of RestTestGen has been tested on Ubuntu 22.04 LTS.
### Java
Make sure to have Java 11 installed in your system. If you are running Ubuntu >= 20.04, you can install Java 11 with the following commands.
```
sudo apt update
sudo apt install openjdk-11-jdk
```
### Dependencies
Dependencies are automatically installed by Gradle during the first run.
### Python
RestTestGen itself does not require Python, but the provided authentication script example does. In order to make such script work, please have Python 3 installed on your machine.
```
sudo apt update
sudo apt install python3
``` |