Skip to content

Instantly share code, notes, and snippets.

@douglasrizzo
Last active January 13, 2021 14:31
Show Gist options
  • Save douglasrizzo/ef734d665fbc9966341d to your computer and use it in GitHub Desktop.
Save douglasrizzo/ef734d665fbc9966341d to your computer and use it in GitHub Desktop.
Robocup Soccer Simulation 2D Server installation on Ubuntu 14.04
# remove any pre-installation of bison
sudo apt remove bison -y && sudo apt-get autoremove -y
# install prerequisites that don't come with the OS
sudo apt install libboost-all-dev flex -y
# download and install older version of bison (2.7.1)
wget http://launchpadlibrarian.net/140087283/libbison-dev_2.7.1.dfsg-1_amd64.deb && sudo dpkg -i libbison-dev_2.7.1.dfsg-1_amd64.deb && rm libbison-dev_2.7.1.dfsg-1_amd64.deb
wget http://launchpadlibrarian.net/140087282/bison_2.7.1.dfsg-1_amd64.deb && sudo dpkg -i bison_2.7.1.dfsg-1_amd64.deb && rm bison_2.7.1.dfsg-1_amd64.deb
# unzip the simulator, configure it, compile it and install it
tar -xvf rcssserver-15.2.2.tar.gz && \
cd rcssserver-15.2.2 && \
./configure --with-boost-libdir=/usr/lib/x86_64-linux-gnu/ && \
make && \
sudo make install
@mohammadsadeghforoughi
Copy link

in ubuntu 18.04 you should use sudo dpkg -i bison_2.7.1.dfsg-1_amd64.deb at end of line 9
(for second dpkg)

@onyx123ff
Copy link

onyx123ff commented Mar 28, 2019

Could anyone help me? im getting error at the make part:

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment