Closed iljaRa closed 5 years ago
Hello, I just tried to reproduce your problem, but I can't seem to do it. I tried on a Ubuntu64 16.04 machine with the same package you tried, and my compilation works without problems.
Is it possible you have two different versions of ARGoS installed at the same time? Check in both /usr and /usr/local if argos3 is present.
Also, can you share the output of CMake when you type
$ cmake -DCMAKE_BUILD_TYPE=Release ../src
in an empty build/
directory?
shouldn't it be $ sudo dpkg -i argos3_simulator-3.0.0-i686-beta53.deb in https://www.argos-sim.info/core.php for Ubuntu 16.04 LTS 64bit?
Isn't that exactly the command that is written in the page you link? Am I missing something?
I'm not sure what c_entity.GetConfigurationNode() does and how to solve the issue without deleting it
We use it allow you to configure some aspects of the Kilobots directly from the XML. It's not a core feature, but it's very handy.
Hello,
Is it possible you have two different versions of ARGoS installed at the same time? Check in both /usr and /usr/local if argos3 is present.
Indeed, it appears that the previous version of argos3 was not properly removed. The issue does not occur when I install the latest argos3 version on a clean Ubuntu. Thank you!
shouldn't it be $ sudo dpkg -i argos3_simulator-3.0.0-i686-beta53.deb in https://www.argos-sim.info/core.php for Ubuntu 16.04 LTS 64bit?
Apologies, I made the same mistake, in fact the name of the file that is downloaded is argos3_simulator-3.0.0-x86_64-beta53.deb and not argos3_simulator-3.0.0-i686-beta53.deb
We use it allow you to configure some aspects of the Kilobots directly from the XML. It's not a core feature, but it's very handy.
Ok, thank you for the info.
I get "error: ‘class argos::CKilobotEntity’ has no member named ‘GetConfigurationNode’" after entering make.
I use Ubuntu 16.04 LTS 64bit and installed the latest version of ARGoS (argos3_simulator-3.0.0-i686-beta53.deb; btw, shouldn't it be $ sudo dpkg -i argos3_simulator-3.0.0-i686-beta53.deb in https://www.argos-sim.info/core.php for Ubuntu 16.04 LTS 64bit?)
If I remove all lines containing _centity.GetConfigurationNode() from dynamics2d_kilobot_model.cpp, the code is built successfully and ARGoS runs without issues. However, I'm not sure what _centity.GetConfigurationNode() does and how to solve the issue without deleting it.