# install boost
bash boost_install.sh
# install cmake
# Linux
sudo apt-get install cmake
cmake --version
# MAC
brew install cmake
cmake --version
Note: you can directly use bash build.sh
after install cmake and boost.
To compile an autotrader:
cmake -DCMAKE_BUILD_TYPE=Debug -B build
cmake --build build --config Debug
Replace "Debug" with "Release" in the above to build with CMake's 'Release' build configuration.
Note: Your autotrader will be built using the 'Release' build configuration for the competition.
python3 -m venv venv
source venv/bin/activate
pip3 install PySide6
On macOS and Linux, you can use:
cp build/autotrader .
To run a Ready Trader Go match with one or more autotraders, simply run:
python3 rtg.py run [AUTOTRADER FILENAME [AUTOTRADER FILENAME]]
For example:
python3 rtg.py run autotrader