Search found 636 matches

Go to advanced search

by pincy
Fri Jan 07, 2022 2:40 pm
Forum: How to... ?
Topic: Symbol "kilobot" not found
Replies: 8
Views: 10341

Re: Symbol "kilobot" not found

You need to install the kilobot plugin with make install.
by pincy
Thu Jan 06, 2022 7:34 pm
Forum: How to... ?
Topic: Is there a way to autostop the qt-user GUI?
Replies: 3
Views: 6806

Re: Is there a way to autostop the qt-user GUI?

You can use the Qt API to close the main window; that will automatically call the necessary ARGoS functions to cleanup and close.
by pincy
Thu Jan 06, 2022 6:01 pm
Forum: How to... ?
Topic: GetX and GetY of Kilobot
Replies: 1
Views: 5246

Re: GetX and GetY of Kilobot

I know of the existence of ARK, but I don't know anything about its internals. I would suggest you to contact the original developers.
by pincy
Thu Jan 06, 2022 9:45 am
Forum: How to... ?
Topic: linkage error when trying to run argos3
Replies: 18
Views: 22286

Re: linkage error when trying to run argos3

Great! Then you probably had old stuff in the build folder from previous attempts.
by pincy
Thu Jan 06, 2022 9:00 am
Forum: How to... ?
Topic: linkage error when trying to run argos3
Replies: 18
Views: 22286

Re: linkage error when trying to run argos3

It looks better now, at least ARGoS runs correctly.

Are you sure the examples you downloaded are the most recent?
by pincy
Thu Jan 06, 2022 8:39 am
Forum: How to... ?
Topic: linkage error when trying to run argos3
Replies: 18
Views: 22286

Re: linkage error when trying to run argos3

BTW, You don't seem to have ARGoS uninstalled correctly, because CMake says:

Code: Select all

Found ARGoS: /usr/local/lib/argos3/libargos3core_simulator.so
This should read:

Code: Select all

Found ARGoS: /usr/lib/argos3/libargos3core_simulator.so
So there's still stuff in /usr/local that shouldn't be there.
by pincy
Thu Jan 06, 2022 8:32 am
Forum: How to... ?
Topic: linkage error when trying to run argos3
Replies: 18
Views: 22286

Re: linkage error when trying to run argos3

You should then try with

Code: Select all

unset LD_LIBRARY_PATH unset ARGOS_PLUGIN_PATH argos3 -q all
It would help me trouble shoot if you told me how you set all these variables.
by pincy
Thu Jan 06, 2022 7:58 am
Forum: How to... ?
Topic: linkage error when trying to run argos3
Replies: 18
Views: 22286

Re: linkage error when trying to run argos3

You still have something wrong, as shown in the output you report.

What is the output of

Code: Select all

echo $LD_LIBRARY_PATH
?
by pincy
Thu Jan 06, 2022 7:43 am
Forum: How to... ?
Topic: linkage error when trying to run argos3
Replies: 18
Views: 22286

Re: linkage error when trying to run argos3

ARGOS_PLUGIN_PATH should not contain anything at all, how did you set that value? What commands do you run to do it?

Make sure that you try this:

Code: Select all

unset ARGOS_PLUGIN_PATH argos3 -q all
and that nowhere in your .bashrc, .profile you have commands to set that variable.
by pincy
Thu Jan 06, 2022 1:17 am
Forum: How to... ?
Topic: linkage error when trying to run argos3
Replies: 18
Views: 22286

Re: linkage error when trying to run argos3

The output you show reports that you still have another version of ARGoS installed in the system, and that confuses CMake. Let's first make sure that ARGoS is completely cleared. This will wipe your previous attempts at installing ARGoS manually, which usually end up in /usr/local. The output you sh...

Go to advanced search