What is the output of
Code: Select all
echo $LD_LIBRARY_PATH
Code: Select all
echo $LD_LIBRARY_PATH
Code: Select all
$ echo $LD_LIBRARY_PATH
/usr/local/lib/
Code: Select all
unset LD_LIBRARY_PATH
unset ARGOS_PLUGIN_PATH
argos3 -q all
Code: Select all
Found ARGoS: /usr/local/lib/argos3/libargos3core_simulator.so
Code: Select all
Found ARGoS: /usr/lib/argos3/libargos3core_simulator.so
Code: Select all
$ unset LD_LIBRARY_PATH
$ unset ARGOS_PLUGIN_PATH
$ argos3 -q all
[INFO] Loaded library "/usr/lib/argos3/libargos3core_simulator.so"
[INFO] Loaded library "/usr/lib/argos3/libargos3plugin_simulator_qtopengl.so"
[INFO] Loaded library "/usr/lib/argos3/libargos3plugin_simulator_eyebot.so"
[INFO] Loaded library "/usr/lib/argos3/libargos3plugin_simulator_spiri.so"
[INFO] Loaded library "/usr/lib/argos3/libargos3plugin_simulator_dynamics2d.so"
[INFO] Loaded library "/usr/lib/argos3/libargos3plugin_simulator_footbot.so"
[INFO] Loaded library "/usr/lib/argos3/libargos3plugin_simulator_pointmass3d.so"
[INFO] Loaded library "/usr/lib/argos3/libargos3plugin_simulator_genericrobot.so"
[INFO] Loaded library "/usr/lib/argos3/libargos3plugin_simulator_dynamics3d.so"
[INFO] Loaded library "/usr/lib/argos3/libargos3plugin_simulator_entities.so"
[INFO] Loaded library "/usr/lib/argos3/libargos3plugin_simulator_prototype.so"
[INFO] Loaded library "/usr/lib/argos3/libargos3plugin_simulator_epuck.so"
[INFO] Loaded library "/usr/lib/argos3/libargos3plugin_simulator_media.so"
AVAILABLE ACTUATORS
[ differential_steering (default) ]
The differential steering actuator.
[ directional_leds (default) ]
The directional LEDs actuator.
[ footbot_distance_scanner (default) ]
The foot-bot distance scanner actuator.
[ footbot_gripper (default) ]
The footbot gripper actuator.
[ footbot_turret (default) ]
The foot-bot turret actuator.
[ gripper (default) ]
The Gripper actuator.
[ joints (default) ]
The prototype joints actuator: controls a prototype entity's joints.
[ leds (default) ]
The LEDs actuator.
[ magnets (default) ]
The (electro)magnet actuator.
[ quadrotor_position (default) ]
The quadrotor position actuator.
[ quadrotor_speed (default) ]
The quadrotor speed actuator.
[ radios (default) ]
A generic radio actuator to send messages to nearby radios.
[ range_and_bearing (default) ]
The range and bearing actuator.
[ tags (default) ]
The tags actuator.
AVAILABLE SENSORS
[ battery (default) ]
A generic battery level sensor.
[ cameras (default) ]
A generic multi-camera sensor capable of running various algorithms
[ colored_blob_omnidirectional_camera (rot_z_only) ]
A generic omnidirectional camera sensor to detect colored blobs.
[ colored_blob_perspective_camera (default) ]
A generic perspective camera sensor to detect colored blobs.
[ differential_steering (default) ]
A generic differential steering sensor.
[ epuck_proximity (default) ]
The E-Puck proximity sensor.
[ eyebot_light (rot_z_only) ]
The eye-bot light sensor (optimized for 2D).
[ eyebot_proximity (default) ]
The eye-bot proximity sensor.
[ footbot_base_ground (rot_z_only) ]
The foot-bot base ground sensor.
[ footbot_distance_scanner (rot_z_only) ]
The foot-bot distance scanner sensor (optimized for 2D).
[ footbot_light (rot_z_only) ]
The foot-bot light sensor (optimized for 2D).
[ footbot_motor_ground (rot_z_only) ]
The foot-bot motor ground sensor.
[ footbot_proximity (default) ]
The foot-bot proximity sensor.
[ footbot_turret_encoder (default) ]
The foot-bot turret encoder sensor.
[ ground (rot_z_only) ]
A generic ground sensor (optimized for 2D).
[ joints (default) ]
The prototype joints sensor: monitors a prototype entity's joints.
[ light (default) ]
A generic light sensor.
[ positioning (default) ]
A generic positioning sensor.
[ proximity (default) ]
A generic proximity sensor.
[ radios (default) ]
A generic radio sensor to receive messages from nearby radios.
[ range_and_bearing (medium) ]
The range-and-bearing sensor.
AVAILABLE PHYSICS ENGINES
[ dynamics2d ]
A 2D dynamics physics engine.
[ dynamics3d ]
A 3D dynamics physics engine
[ pointmass3d ]
A 3D point-mass physics engine.
AVAILABLE MEDIA
[ directional_led ]
Manages directional LED entities.
[ led ]
Manages the LEDs.
[ radio ]
Enables communication between a radio actuator and radio sensor.
[ range_and_bearing ]
It simulates the communication across range-and-bearing-equipped robots.
[ tag ]
Manages tag entities.
AVAILABLE VISUALIZATIONS
[ qt-opengl ]
An interactive graphical renderer based on Qt and OpenGL.
AVAILABLE ENTITIES
[ box ]
A stretchable 3D box.
[ cylinder ]
A stretchable cylinder.
[ e-puck ]
The e-puck robot.
[ eye-bot ]
The eye-bot robot, developed in the Swarmanoid project.
[ floor ]
It contains the properties of the arena floor.
[ foot-bot ]
The foot-bot robot, developed in the Swarmanoid project.
[ light ]
A colored light.
[ prototype ]
A generic and configurable entity
[ spiri ]
The spiri robot, developed by Pleiades Robotics.
$ cd argos3-examples
$ rm -rf build
$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_MODULE_PATH=/usr/share/argos3/cmake ..
-- Found ARGoS: /usr/local/lib/argos3/libargos3core_simulator.so
CMake Error at /usr/share/argos3/cmake/ARGoSConfig.cmake:109 (include):
include could not find load file:
ARGoSSettings
Call Stack (most recent call first):
CMakeLists.txt:22 (find_package)
-- Configuring incomplete, errors occurred!
See also "/home/ubuntu/argos3-examples/CMakeFiles/CMakeOutput.log".
Code: Select all
$ ls /usr/local/lib/argos3/
ls: cannot access '/usr/local/lib/argos3/': No such file or directory