Closed LoreMoretti closed 3 months ago
Then, I am creating the world containing ergoCubGazeboV1_1
as reported in the wiki, which I copy here as well:
Then, I run gz sim world_ergoCubGazeboV1_1.sdf
.
A black window appears, but then crash with the following terminal message:
Interesting. If you are compiling gz-sim-yarp-plugins, can you try to enable BUILD_TESTING in the CMake build of the repo and run the tests, to understand if those work fine or not in your system?
Interesting. If you are compiling gz-sim-yarp-plugins, can you try to enable BUILD_TESTING in the CMake build of the repo and run the tests, to understand if those work fine or not in your system?
while configuring to build the test I get the following error:
CMake Error at /home/lomoretti/mambaforge/envs/robsub_gzsim/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake:233 (message):
Could NOT find GTest (missing: GTEST_LIBRARY GTEST_MAIN_LIBRARY)
Call Stack (most recent call first):
/home/lomoretti/mambaforge/envs/robsub_gzsim/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake:603 (_FPHSA_FAILURE_MESSAGE)
/home/lomoretti/mambaforge/envs/robsub_gzsim/share/cmake-3.30/Modules/FindGTest.cmake:273 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
tests/CMakeLists.txt:1 (find_package)
Configuring incomplete, errors occurred!
is GTest
a needed dependency?
Yes, it is indeed a test dependency, you can install it with the gtest conda-forge package, see https://github.com/robotology/gz-sim-yarp-plugins/blob/e681eca66446e3652b0f1f002b84845f27b3c22c/ci_env.yml#L12 .
Here the log of the tests:
(robsub_gzsim) lomoretti@IITICUBLAP226:~/robotology/robotology-superbuild/build/src/gz-sim-yarp-plugins (master)$ ctest
Test project /home/lomoretti/robotology/robotology-superbuild/build/src/gz-sim-yarp-plugins
Start 1: ForceTorqueTest
1/13 Test #1: ForceTorqueTest .............................***Failed 3.09 sec
Start 2: ImuTest
2/13 Test #2: ImuTest ..................................... Passed 7.17 sec
Start 3: LaserTest
3/13 Test #3: LaserTest ...................................***Failed 3.39 sec
Start 4: CameraTest
4/13 Test #4: CameraTest ..................................***Failed 8.19 sec
Start 5: ClockTest
5/13 Test #5: ClockTest ...................................***Exception: SegFault 4.11 sec
Start 6: ControlBoardTorqueControlTest
6/13 Test #6: ControlBoardTorqueControlTest ...............***Exception: SegFault 2.10 sec
Start 7: ControlBoardPositionDirectControlTest
7/13 Test #7: ControlBoardPositionDirectControlTest .......***Failed 0.46 sec
Start 8: ControlBoardPositionControlTest
8/13 Test #8: ControlBoardPositionControlTest .............***Exception: SegFault 0.47 sec
Start 9: ControlBoardCommonsTest
9/13 Test #9: ControlBoardCommonsTest .....................***Exception: SegFault 0.61 sec
Start 10: ControlBoardOnMultipleGazeboInstancesTest
10/13 Test #10: ControlBoardOnMultipleGazeboInstancesTest ...***Exception: SegFault 0.52 sec
Start 11: ConfigurationParsingFromFileTest
11/13 Test #11: ConfigurationParsingFromFileTest ............ Passed 0.48 sec
Start 12: ConfigurationParsingFromStringTest
12/13 Test #12: ConfigurationParsingFromStringTest .......... Passed 0.42 sec
Start 13: ConcurrentInstancesTest
13/13 Test #13: ConcurrentInstancesTest ..................... Passed 3.46 sec
31% tests passed, 9 tests failed out of 13
Total Test time (real) = 34.47 sec
The following tests FAILED:
1 - ForceTorqueTest (Failed)
3 - LaserTest (Failed)
4 - CameraTest (Failed)
5 - ClockTest (SEGFAULT)
6 - ControlBoardTorqueControlTest (SEGFAULT)
7 - ControlBoardPositionDirectControlTest (Failed)
8 - ControlBoardPositionControlTest (SEGFAULT)
9 - ControlBoardCommonsTest (SEGFAULT)
10 - ControlBoardOnMultipleGazeboInstancesTest (SEGFAULT)
Errors while running CTest
Output from these tests are in: /home/lomoretti/robotology/robotology-superbuild/build/src/gz-sim-yarp-plugins/Testing/Temporary/LastTest.log
Use "--rerun-failed --output-on-failure" to re-run the failed cases verbosely.
I have re-run with verbose options the failed one:
This is interesting, tests are passing fine in CI https://github.com/robotology/gz-sim-yarp-plugins/actions/runs/10208894581/job/28246043512 .
Probably you can run conda list --explicit
and env
and compare them with the output of the same command in CI ("Print environemnt") build step to understand if there is anything strange in your setup.
Sure, here it is:
Ok, there is nothing too strange in the env (at least that I see), we can move to actually see the test failures.
For the first one, I see:
[ERROR] File not found: ../../../tests/forcetorque/forcetorque_nws.xml
[ERROR] Error while finding yarpRobotInterfaceConfigurationFile: ../../../tests/forcetorque/forcetorque_nws.xml
[ERROR] gz-sim-yarp-robotinterface-system :yarpRobotInterfaceConfigurationFile not found
[ERROR] gz-sim-yarp-robotinterface-system : Error loading robotinterface configuration file
Somehow the test in https://github.com/robotology/gz-sim-yarp-plugins/blob/e681eca66446e3652b0f1f002b84845f27b3c22c/tests/forcetorque/ForceTorqueTest.cc#L27 can't find the yarprobotinterface files. The problem seems with the relative path (relative w.r.t. to what?) passed to yarpRobotInterfaceConfigurationFile
. The problem seems similar to https://github.com/robotology/gz-sim-yarp-plugins/pull/168 . I guess in CI the test pass as somehow this relative path encodes the assumption that the build directory is a child directory of the source directory of gz-sim-yarp-plugins, assumption that is not true when running the test in the superbuild.
Anyhow these failures are probably unrelated, we can open a new issue for tracking this @xela-95 .
Looking at the logs posted in https://github.com/robotology/gz-sim-yarp-plugins/issues/173#issuecomment-2264879467, here are the lines that trigger me the most:
[Err] [SystemLoader.cc:92] Failed to load system plugin [libgazebo_yarp_imu.so] : Could not find shared library.
[Err] [SystemLoader.cc:92] Failed to load system plugin [libgazebo_yarp_controlboard.so] : Could not find shared library.
[Err] [SystemLoader.cc:92] Failed to load system plugin [libgazebo_yarp_robotinterface.so] : Could not find shared library.
[ERROR] Target device l_arm_ft_sensor_inertial_hardware_device (network = left_arm_imu ) does not exist.
[ERROR] Cannot run attach action on device alljoints-inertials_remapper
The first three are the usual errors you get as the model also contains Gazebo Classic plugins, so you can ignore them.
Probably it is some kind of regression of https://github.com/icub-tech-iit/ergocub-software/pull/232/files and https://github.com/icub-tech-iit/ergocub-software/pull/232 and https://github.com/icub-tech-iit/ergocub-software/pull/236 that added the plugins for the FT imus only on Gazebo Classic and not in gz-sim ? I guess the fix is just to add those and regenerate the models, or for the time being just disable those devices from yarprobotinterface .xml files. Probably we could add some smoke test in ergocub-software to ensure that the model load successfully without failures (or even an helper command that does that from the command line, and call that from the tests).
I just created a new conda environment from which I installed all the dependencies of robotology superbuild, then I created the world SDF and launched gz sim and it opened:
Here's the logs:
Here's the conda environment:
Interesting, perhaps there is a different between the latest released version and the latest master version of ergocub-software? Anyhow, I guess that downgrading ergocub-software to a version before https://github.com/icub-tech-iit/ergocub-software/pull/232 should also be a valid workaround for the problem.
I thought I was able to launch correctly gz sim, but I it worked only because I didn't launched yarp server
before. Launching it I get the same segfault exception of @LoreMoretti.
By the way, the fact that is crashing instead of printing errors may be another thing we may want to address eventually.
Anyhow, I guess that downgrading ergocub-software to a version before icub-tech-iit/ergocub-software#232 should also be a valid workaround for the problem.
I checked out the ergocub-software package to commit 49402203de8f1ef3bfd324f6b6f9ac55a1cebf1f, compiled and installed and I was able to launch the world file as in the tutorial.
I had a look at the PR https://github.com/icub-tech-iit/ergocub-software/pull/236 and I'm trying to understand where to make the necessary adjustments. In the meantime using the version suggested above can unlock @LoreMoretti in performing his tests.
P.S.: Sorry for the delay in the response but I had to refresh how to handle this stuff 😅
@LoreMoretti now that https://github.com/icub-tech-iit/ergocub-software/pull/250 has been merged you should be able to complete the tutorial 🤞🏻
I pulled and recompiled,
Then, I started yarpserver
and run gz sim ergocubGazevoV1_1_gz_sim_world.sdf
, what I get is the following:
So there is no more a crash, but the gz-sim
window remains black, and this line [INFO] |yarp.os.Time| Waiting for clock server to start broadcasting data ...
is repeatedly printed on the terminal.
Is there anything I should do related to the clock
port, before launching gz-sim
?
My bad, I was also exporting $YARP_CLOCK
env variable (like export YARP_CLOCK=/clock
), as I was used to do it for the old gazebo
.
Is this not needed anymore for gz-sim
?
So there is no more a crash, but the
gz-sim
window remains black, and this line[INFO] |yarp.os.Time| Waiting for clock server to start broadcasting data ...
is repeatedly printed on the terminal.Is there anything I should do related to the
clock
port, before launchinggz-sim
?
Uhm, that's strange; in theory, if you just want to launch the simulation, you don't need to set that environment variable, so Gazebo should open normally.
However, if you want to launch some controllers to interact with the simulation, as it is done in https://github.com/ami-iit/walking-controllers#computer-how-to-run-the-simulation (that I tested with modern Gazebo and gz-sim-yarp-plugins in https://github.com/robotology/gz-sim-yarp-plugins/issues/122) you have to export that variable as you do with Classic Gazebo.
YARP_CLOCK is required to make sure that the YARP's network wrapper server indeed publish with a frequency coherent with the simulation time. Are you including the gz-sim-yarp-clock
plugin in the world?
YARP_CLOCK is required to make sure that the YARP's network wrapper server indeed publish with a frequency coherent with the simulation time.
Clear, thanks!
Are you including the gz-sim-yarp-clock plugin in the world?
I see the following lines in the world file:
<!-- YARP CLOCK -->
<plugin
filename="gz-sim-yarp-clock-system"
name="gzyarp::Clock">
</plugin>
So I think yes.
Closing this issue since the crash has been fixed.
Continuing the discussion of the clock
issue in a separate issue.
I am trying to load ergoCubGazeboV1_1 in gz_sim, but I am experiencing a crash.
I have installed gz-sim-yarpl-plugins as part of the robotology-superbuild (installed from source with conda dependencies).
robotology git status
``` (robsub_gzsim) lomoretti@IITICUBLAP226:~/robotology/robotology-superbuild (master)$ ./scripts/robotologyGitStatus.sh -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild: master 3 days ago|The KMP_DUPLICATE_LIB_OK problem is present also on Windows so document and apply the workaround also on Windows (#1658)|84f1b1d9207de0856b7f79d5c7795fdba224f2de|HEAD -> master, origin/master, origin/HEAD ## master...origin/master M .vscode/settings.json ?? .cache/ diff --git a/.vscode/settings.json b/.vscode/settings.json index 8c9319f..a95c43a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,8 @@ { - "C_Cpp.default.compileCommands": "${config:cmake.buildDirectory}/compile_commands.json", - "cmake.mergedCompileCommands": "${command:cmake.buildDirectory}/compile_commands.json", + "C_Cpp.default.compileCommands": "${workspaceFolder}/build/compile_commands.json", + "cmake.mergedCompileCommands": "${workspaceFolder}/build/compile_commands.json", "clangd.arguments": [ - "--compile-commands-dir=${config:cmake.buildDirectory}/" + "--compile-commands-dir=${workspaceFolder}/build/" ], -} + "cmake.copyCompileCommands": "", +} \ No newline at end of file -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/BayesFilters/: master 9 months ago|Merge pull request #103 from GiulioRomualdi/patch-1|b180d03df2614eeb7749e130c70391f59d91408c|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/bipedal-locomotion-framework/: master 9 days ago|Add method to get joint limits from control board (#868)|4ea37800355531fe4c78f12a4ed0aa426a748ed3|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/BlockFactory/: master 6 months ago|Bump version to 0.8.5 (#76)|22f62816df31a39b972ac135d186d4150458c3b1|HEAD -> master, tag: v0.8.5, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/casadi/: 3.6.5.backport3724 4 weeks ago|Issue #3723 Fixed function signatures for MX::difference|71d40ac6419b603965a0e0882857a0615b428a1c|HEAD -> 3.6.5.backport3724, origin/3.6.5.backport3724 ## 3.6.5.backport3724...origin/3.6.5.backport3724 -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/casadi-matlab-bindings/: HEAD 5 months ago|Merge pull request #16 from ami-iit/bump365|9d66e0bb56ae4536a7e49c827901f55442b255ab|HEAD, tag: v3.6.5.0 ## HEAD (no branch) -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/CppAD/: HEAD 7 months ago|stable/20240000: check_all.sh: run check_version.sh interactively when a stable version.|38f532ec5a5c098c7439d3fa51a2cb91e1b0a11e|HEAD, tag: 20240000.2 ## HEAD (no branch) -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/ergocub-software/: master 3 weeks ago|ergoCub1_0: fix mass and inertia of the head (#249)|e4b567e67e746340051e296b0d9ed74c164f454b|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/GazeboYARPPlugins/: master 9 weeks ago|Merge pull request #683 from robotology/traversaro-patch-1|d296652b7619dbef39e9bd65ae49f6ca3bdd9377|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/gz-sim-yarp-plugins/: main 84 minutes ago|Add handling of `VOCAB_CM_FORCE_IDLE` control mode (#172)|e681eca66446e3652b0f1f002b84845f27b3c22c|HEAD -> main, origin/main, origin/HEAD ## main...origin/main -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/ICUB/: master 7 days ago|embObjLib: in ethReceiver set receiving thread as non-blocking also on Windows (#975)|9019b41135f46e45eec67940dd4d9b5446dca7da|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/ICUBcontrib/: master 7 months ago|bumped cmake and yarp version|e12668ce111ee0e0cecccc429b8ff922fe750af6|HEAD -> master, tag: v1.20.0, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/icub-models/: master 5 weeks ago|Merge pull request #179 from robotology/reloc|5633130b47eef3c54ad0fa34ac912cc562d807dd|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/iDynTree/: master 3 days ago|Re-enable valgrind tests for IntegrationTestiCubTorqueEstimation (#1196)|f6f993ca3022f4f100ee6736129be4a2ea9a36b8|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/idyntree-yarp-tools/: main 8 months ago|Bumped version for release|4414a0ba87ab17b22941b1f911e07a4aa892d411|HEAD -> main, tag: v0.0.9, origin/main, origin/HEAD ## main...origin/main -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/LieGroupControllers/: master 11 months ago|License the repo under the BSD-3-Clause license (#14)|50078d5b682ad863adbfc31de2acfb83aa536c72|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/manif/: HEAD 1 year, 1 month ago|Merge pull request #2 from robotology-dependencies/traversaro-patch-1|ae09e9f7e48139f11d807595f5d7215c5bf716ce|HEAD, tag: 0.0.4.103, origin/robsub2022, origin/HEAD, robsub2022 ## HEAD (no branch) -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/matioCpp/: master 4 weeks ago|Merge pull request #83 from ami-iit/usage_improvements|f30bce77cd214f0fa8a2c8fc75799957d85eaa9f|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/matlab-whole-body-simulator/: master 9 weeks ago|Merge pull request #90 from ami-iit/traversaro-patch-2|89ad53de8a82f16180ef12dc2c8b4b3d68990ecb|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/meshcat-python/: master 12 months ago|Merge pull request #143 from meshcat-dev/rdeits-patch-1|785bc9d5ba6f8a8bb79ee8b25f523805946c1fbd|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/osqp/: HEAD 1 year, 2 months ago|Release 0.6.3 (#529)|0dd00a578cf1c2691c5c379965d504c75bf6cfad|HEAD, tag: v0.6.3 ## HEAD (no branch) -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/OsqpEigen/: master 4 weeks ago|Fix typos (#166)|b9ce7391350e0f1c71e49f7574a8785fb617b5e6|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/osqp-matlab/: main 6 months ago|Merge pull request #13 from ami-iit/traversaro-patch-5|286dfae63bc80783b339fe0cad44970324ea480c|HEAD -> main, tag: v0.6.2.4, origin/main, origin/HEAD ## main...origin/main -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/proxsuite/: HEAD 5 months ago|release: Update CHANGELOG.md for 0.6.4|b45436328429914bf49fb418839ea5f13c804687|HEAD, tag: v0.6.4, tag: master ## HEAD (no branch) -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/pyngrok/: main 2 weeks ago|Prep 7.2.0 for release.|6eeff531cfb63ce6ff53cc5b1c3ef2f507e7a1ab|HEAD -> main, tag: 7.2.0, origin/main, origin/develop, origin/HEAD ## main...origin/main -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/pyqtconsole/: master 5 weeks ago|Merge pull request #81 from RobertoRoos/feature/python-version|ed0f43575ae620ef84f0df70d515cf33b46668d8|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/qpOASES/: master 4 years, 7 months ago|Merge pull request #13 from robotology-dependencies/fix-matlab-2019b|90390fff9d9f111cb693deea42714237894fe1dc|HEAD -> master, tag: v3.2.0.1, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/resolve-robotics-uri-py/: main 3 months ago|Support passing the name of custom env vars as additional search paths (#13)|699799250970be33a0b6b5342c1e3cdce43e95b5|HEAD -> main, tag: v0.3.0, origin/main, origin/HEAD ## main...origin/main -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/robometry/: master 2 months ago|Update CHANGELOG.md|bb2ea36c90141b9a6ac2be903619786734f95a52|HEAD -> master, tag: v1.2.4, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/robot-log-visualizer/: main 4 months ago|Refactor annotation creation and removal logic in MatplotlibViewerCanvas|89847b9c4ec857d7418b00d5b31e24db85b721bc|HEAD -> main, origin/main, origin/HEAD ## main...origin/main -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/robots-configuration/: master 2 weeks ago|Rename alljoints-inertials port to avoid using portprefix (#669)|e5a262e8750102cd36fe64e48e709aeef8e88e29|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/UnicyclePlanner/: master 7 weeks ago|Merge pull request #57 from robotology/relicense|fa2a2a888ee3e5a45dddcc5a9387485b66d0aa0f|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/walking-controllers/: fix/test_compilation 22 hours ago|fetch Catch2 and update include statements|dcf6860a8a0ef8b59225ecdc0cc031c7ceb7e15a|HEAD -> fix/test_compilation, LorenzoFork/fix/test_compilation ## fix/test_compilation -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/WBToolbox/: master 6 months ago|Merge pull request #243 from LoreMoretti/bug_fix|19b7408d7f2ba69ba82ced58d3a103015edd0309|HEAD -> master, tag: v5.6.1, origin/master, origin/devel, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/whole-body-controllers/: master 1 year, 10 months ago|Merge pull request #150 from isorrentino/homeClosedEyes|90ff965a523f0a120e6a8981b71326c1485e7742|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/whole-body-estimators/: master 3 weeks ago|Merge pull request #194 from robotology/cleanupftsensorsconfig|80d45bf79c5e4be3c7f83e0bec8f2cdfef48caab|HEAD -> master, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/YARP/: yarp-3.9 9 weeks ago|Merge pull request #3082 from robotology/traversaro-patch-1|169ae46563c2f7fc47fac86b11530f369c10ab4a|HEAD -> yarp-3.9, origin/yarp-3.9 ## yarp-3.9...origin/yarp-3.9 -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/yarp-device-keyboard-joypad/: main 2 months ago|Merge pull request #6 from ami-iit/padding|ad266c1fa45694814b07e2e01fc9a88cd368d70a|HEAD -> main, tag: v0.0.2, origin/main, origin/HEAD ## main...origin/main -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/yarp-devices-ros/: master 5 months ago|Merge pull request #2 from robotology/bumpver|e98fcc3d4b8d21547f29e433491a75103d2a670f|HEAD -> master, tag: v3.9.0, origin/master, origin/HEAD ## master...origin/master -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/yarp-matlab-bindings/: yarp-3.9 6 months ago|Bump version to 3.9.1|881b6088f6c8e6d809f3ff3462b4fe2b7fcb52c3|HEAD -> yarp-3.9, tag: v3.9.1, origin/yarp-3.9 ## yarp-3.9...origin/yarp-3.9 -------------------------------------------- /home/lomoretti/robotology/robotology-superbuild/src/YCM/: master 3 weeks ago|Bump version to 0.16.5|d5c16deed3bf65538d48bebf127c4dcb50a48d8f|HEAD -> master, tag: v0.16.5, origin/master, origin/HEAD ## master...origin/master ```conda list
``` (robsub_gzsim) lomoretti@IITICUBLAP226:~$ conda list # packages in environment at /home/lomoretti/mambaforge/envs/robsub_gzsim: # # Name Version Build Channel _libgcc_mutex 0.1 conda_forge conda-forge _openmp_mutex 4.5 2_gnu conda-forge _sysroot_linux-64_curr_repodata_hack 3 h69a702a_16 conda-forge ace 8.0.0 hac33072_1 conda-forge aiohttp 3.9.5 py310h2372a71_0 conda-forge aiosignal 1.3.1 pyhd8ed1ab_0 conda-forge alsa-lib 1.2.12 h4ab18f5_0 conda-forge ampl-mp 3.1.0 h2cc385e_1006 conda-forge aom 3.9.1 hac33072_0 conda-forge asio 1.29.0 h59595ed_0 conda-forge assimp 5.3.1 h8343317_3 conda-forge asttokens 2.4.1 pyhd8ed1ab_0 conda-forge async-timeout 4.0.3 pyhd8ed1ab_0 conda-forge atk-1.0 2.38.0 h04ea711_2 conda-forge attr 2.5.1 h166bdaf_1 conda-forge attrs 23.2.0 pyh71513ae_0 conda-forge aws-c-auth 0.7.20 h5f1c8d9_0 conda-forge aws-c-cal 0.6.12 h2ba76a8_0 conda-forge aws-c-common 0.9.17 h4ab18f5_0 conda-forge aws-c-compression 0.2.18 h36a0aea_4 conda-forge aws-c-event-stream 0.4.2 h161de36_10 conda-forge aws-c-http 0.8.1 h63f54a0_13 conda-forge aws-c-io 0.14.8 h96d4d28_0 conda-forge aws-c-mqtt 0.10.4 hcc7299c_2 conda-forge aws-c-s3 0.5.9 h10bd90f_0 conda-forge aws-c-sdkutils 0.1.16 h36a0aea_0 conda-forge aws-checksums 0.1.18 h36a0aea_4 conda-forge aws-crt-cpp 0.26.8 h4f3a3cc_11 conda-forge aws-sdk-cpp 1.11.267 h51dfee4_8 conda-forge azure-core-cpp 1.11.1 h91d86a7_1 conda-forge azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge bash-completion 2.11 ha770c72_1 conda-forge binutils 2.40 h4852527_7 conda-forge binutils_impl_linux-64 2.40 ha1999f0_7 conda-forge binutils_linux-64 2.40 hb3c18ed_0 conda-forge blosc 1.21.6 hef167b5_0 conda-forge boost 1.84.0 hb7f781d_3 conda-forge brotli 1.1.0 hd590300_1 conda-forge brotli-bin 1.1.0 hd590300_1 conda-forge bullet-cpp 3.25 hcc13569_2 conda-forge bzip2 1.0.8 h4bc722e_7 conda-forge c-ares 1.32.3 h4bc722e_0 conda-forge c-compiler 1.7.0 hd590300_1 conda-forge ca-certificates 2024.7.4 hbcca054_0 conda-forge cached-property 1.5.2 hd8ed1ab_1 conda-forge cached_property 1.5.2 pyha770c72_1 conda-forge cairo 1.18.0 h3faef2a_0 conda-forge certifi 2024.7.4 pyhd8ed1ab_0 conda-forge cfitsio 4.4.0 hbdc6101_1 conda-forge cli11 2.4.1 h59595ed_0 conda-forge cmake 3.30.1 hf8c4bd3_0 conda-forge compilers 1.7.0 ha770c72_1 conda-forge console_bridge 1.0.2 h924138e_1 conda-forge contourpy 1.2.1 py310hd41b1e2_0 conda-forge cppzmq 4.10.0 h2e2a08d_1 conda-forge cxx-compiler 1.7.0 h00ab1b0_1 conda-forge cycler 0.12.1 pyhd8ed1ab_0 conda-forge dartsim 6.13.2 h89be5ba_2 conda-forge dav1d 1.2.1 hd590300_0 conda-forge dbus 1.13.6 h5008d03_3 conda-forge decorator 5.1.1 pyhd8ed1ab_0 conda-forge double-conversion 3.3.0 h59595ed_0 conda-forge eigen 3.4.0 h00ab1b0_0 conda-forge elfutils 0.191 h924a536_0 conda-forge exceptiongroup 1.2.2 pyhd8ed1ab_0 conda-forge executing 2.0.1 pyhd8ed1ab_0 conda-forge expat 2.6.2 h59595ed_0 conda-forge fcl 0.7.0 hadc09e8_4 conda-forge ffmpeg 6.1.1 gpl_h853fe30_113 conda-forge flann 1.9.2 h2b5ea80_0 conda-forge fmt 10.2.1 h00ab1b0_0 conda-forge font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge font-ttf-inconsolata 3.000 h77eed37_0 conda-forge font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge font-ttf-ubuntu 0.83 h77eed37_2 conda-forge fontconfig 2.14.2 h14ed4e7_0 conda-forge fonts-conda-ecosystem 1 0 conda-forge fonts-conda-forge 1 0 conda-forge fonttools 4.53.1 py310h5b4e0ec_0 conda-forge fortran-compiler 1.7.0 heb67821_1 conda-forge freeglut 3.2.2 hac7e632_2 conda-forge freeimage 3.18.0 h4b96d29_20 conda-forge freetype 2.12.1 h267a509_2 conda-forge freexl 2.0.0 h743c826_0 conda-forge fribidi 1.0.10 h36c2ea0_0 conda-forge frozenlist 1.4.1 py310h2372a71_0 conda-forge gcc 12.4.0 h236703b_0 conda-forge gcc_impl_linux-64 12.4.0 hb2e57f8_0 conda-forge gcc_linux-64 12.4.0 h6b7512a_0 conda-forge gdbm 1.18 h0a1914f_2 conda-forge gdk-pixbuf 2.42.12 hb9ae30d_0 conda-forge geos 3.12.1 h59595ed_0 conda-forge geotiff 1.7.1 h6b2125f_15 conda-forge gettext 0.22.5 h59595ed_2 conda-forge gettext-tools 0.22.5 h59595ed_2 conda-forge gfortran 12.4.0 h236703b_0 conda-forge gfortran_impl_linux-64 12.4.0 hc568b83_0 conda-forge gfortran_linux-64 12.4.0 hd748a6a_0 conda-forge giflib 5.2.2 hd590300_0 conda-forge gl2ps 1.4.2 hae5d5c5_1 conda-forge glew 2.1.0 h9c3ff4c_2 conda-forge glfw 3.4 hd590300_0 conda-forge glib 2.80.2 hf974151_0 conda-forge glib-networking 2.80.0 h2ef3c98_0 conda-forge glib-tools 2.80.2 hb6ce0ca_0 conda-forge glm 0.9.9.8 h00ab1b0_0 conda-forge gmp 6.3.0 hac33072_2 conda-forge gnutls 3.7.9 hb077bed_0 conda-forge graphite2 1.3.13 h59595ed_1003 conda-forge graphviz 11.0.0 hc68bbd7_0 conda-forge gsl 2.7 he838d99_0 conda-forge gst-plugins-bad 1.24.4 h8a6294b_0 conda-forge gst-plugins-base 1.24.4 h9ad1361_0 conda-forge gst-plugins-good 1.24.4 h1ec2d69_0 conda-forge gstreamer 1.24.4 haf2f30d_0 conda-forge gtk2 2.24.33 h280cfa0_4 conda-forge gts 0.7.6 h977cf35_4 conda-forge gxx 12.4.0 h236703b_0 conda-forge gxx_impl_linux-64 12.4.0 h557a472_0 conda-forge gxx_linux-64 12.4.0 h8489865_0 conda-forge gz-sim8 8.3.0 ha770c72_0 conda-forge gz-sim8-python 8.3.0 py310h64a2142_0 conda-forge h5py 3.11.0 nompi_py310hf054cd7_102 conda-forge harfbuzz 8.5.0 hfac3d4d_0 conda-forge hdf4 4.2.15 h2a13503_7 conda-forge hdf5 1.14.3 nompi_hdf9ad27_105 conda-forge icu 73.2 h59595ed_0 conda-forge idna 3.7 pyhd8ed1ab_0 conda-forge imath 3.1.11 hfc55251_0 conda-forge ipopt 3.14.16 h3696c94_4 conda-forge ipython 8.26.0 pyh707e725_0 conda-forge irrlicht 1.8.5 h2a6caf8_4 conda-forge jack 1.9.22 h7c63dc7_2 conda-forge jasper 4.2.4 h536e39c_0 conda-forge jedi 0.19.1 pyhd8ed1ab_0 conda-forge json-c 0.17 h1220068_1 conda-forge jsoncpp 1.9.5 h4bd325d_1 conda-forge jxrlib 1.1 hd590300_3 conda-forge kealib 1.5.3 hee9dde6_1 conda-forge kernel-headers_linux-64 3.10.0 h4a8ded7_16 conda-forge keyutils 1.6.1 h166bdaf_0 conda-forge kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge krb5 1.21.3 h659f571_0 conda-forge lame 3.100 h166bdaf_1003 conda-forge lcms2 2.16 hb7c19ff_0 conda-forge ld_impl_linux-64 2.40 hf3520f5_7 conda-forge lerc 4.0.0 h27087fc_0 conda-forge libabseil 20240116.2 cxx17_he02047a_1 conda-forge libaec 1.1.3 h59595ed_0 conda-forge libarchive 3.7.4 hfca40fe_0 conda-forge libasprintf 0.22.5 h661eb56_2 conda-forge libasprintf-devel 0.22.5 h661eb56_2 conda-forge libass 0.17.1 h8fe9dca_1 conda-forge libblas 3.9.0 23_linux64_openblas conda-forge libboost 1.84.0 hba137d9_3 conda-forge libboost-devel 1.84.0 h00ab1b0_3 conda-forge libboost-headers 1.84.0 ha770c72_3 conda-forge libboost-python 1.84.0 py310he6ccd79_3 conda-forge libboost-python-devel 1.84.0 py310hb7f781d_3 conda-forge libbrotlicommon 1.1.0 hd590300_1 conda-forge libbrotlidec 1.1.0 hd590300_1 conda-forge libbrotlienc 1.1.0 hd590300_1 conda-forge libcap 2.69 h0f662aa_0 conda-forge libcblas 3.9.0 23_linux64_openblas conda-forge libccd-double 2.1 h59595ed_3 conda-forge libclang-cpp15 15.0.7 default_h127d8a8_5 conda-forge libclang-cpp18.1 18.1.8 default_hf981a13_1 conda-forge libclang13 18.1.8 default_h9def88c_1 conda-forge libcrc32c 1.1.2 h9c3ff4c_0 conda-forge libcups 2.3.3 h4637d8d_4 conda-forge libcurl 8.9.0 hdb1bdb2_0 conda-forge libdb 6.2.32 h9c3ff4c_0 conda-forge libdc1394 2.2.7 h59595ed_1 conda-forge libdeflate 1.20 hd590300_0 conda-forge libdrm 2.4.122 h4ab18f5_0 conda-forge libdrm-cos7-x86_64 2.4.97 h9b0a68f_1105 conda-forge libedit 3.1.20191231 he28a2e2_2 conda-forge libev 4.33 hd590300_2 conda-forge libevent 2.1.12 hf998b51_1 conda-forge libexpat 2.6.2 h59595ed_0 conda-forge libffi 3.4.2 h7f98852_5 conda-forge libflac 1.4.3 h59595ed_0 conda-forge libgcc-devel_linux-64 12.4.0 ha4f9413_100 conda-forge libgcc-ng 14.1.0 h77fa898_0 conda-forge libgcrypt 1.11.0 h4ab18f5_1 conda-forge libgd 2.3.3 h119a65a_9 conda-forge libgdal 3.8.4 h7c88fdf_5 conda-forge libgettextpo 0.22.5 h59595ed_2 conda-forge libgettextpo-devel 0.22.5 h59595ed_2 conda-forge libgfortran-ng 14.1.0 h69a702a_0 conda-forge libgfortran5 14.1.0 hc5f4f2c_0 conda-forge libglib 2.80.2 hf974151_0 conda-forge libglu 9.0.0 hac7e632_1003 conda-forge libglvnd-cos7-x86_64 1.0.1 h9b0a68f_1105 conda-forge libglvnd-glx-cos7-x86_64 1.0.1 h9b0a68f_1105 conda-forge libgomp 14.1.0 h77fa898_0 conda-forge libgoogle-cloud 2.23.0 h9be4e54_1 conda-forge libgoogle-cloud-storage 2.23.0 hc7a4891_1 conda-forge libgpg-error 1.50 h4f305b6_0 conda-forge libgrpc 1.62.2 h15f2491_0 conda-forge libgz-cmake3 3.5.3 hac33072_0 conda-forge libgz-common5 5.5.1 h23e380d_0 conda-forge libgz-fuel-tools9 9.0.3 h9614a5f_0 conda-forge libgz-gui8 8.0.0 hee5a715_6 conda-forge libgz-math7 7.5.0 hac33072_0 conda-forge libgz-msgs10 10.2.0 hbde0791_0 conda-forge libgz-physics7 7.2.0 h45a2cb6_1 conda-forge libgz-plugin2 2.0.3 h59595ed_0 conda-forge libgz-rendering8 8.1.1 hd3aeb46_1 conda-forge libgz-sensors8 8.0.0 hf437a2f_5 conda-forge libgz-sim8 8.3.0 h5fd5377_0 conda-forge libgz-tools2 2.0.0 h1caa08d_4 conda-forge libgz-transport13 13.4.0 h09f39ac_0 conda-forge libgz-utils2 2.1.0 h59595ed_0 conda-forge libhwloc 2.11.0 default_h5622ce7_1000 conda-forge libi2c 4.3 hcb278e6_2 conda-forge libiconv 1.17 hd590300_2 conda-forge libidn2 2.3.7 hd590300_0 conda-forge libjpeg-turbo 3.0.0 hd590300_1 conda-forge libkml 1.3.0 hbbc8833_1020 conda-forge liblapack 3.9.0 23_linux64_openblas conda-forge liblapacke 3.9.0 23_linux64_openblas conda-forge libllvm15 15.0.7 hb3ce162_4 conda-forge libllvm18 18.1.8 h8b73ec9_1 conda-forge libmatio 1.5.27 hd8a4993_0 conda-forge libmicrohttpd 1.0.1 h97afed2_0 conda-forge libnetcdf 4.9.2 nompi_h135f659_114 conda-forge libnghttp2 1.58.0 h47da74e_1 conda-forge libnsl 2.0.1 hd590300_0 conda-forge libode 0.16.2 hc6cd4ac_14 conda-forge libogg 1.3.5 h4ab18f5_0 conda-forge libopenblas 0.3.27 pthreads_hac2b453_1 conda-forge libopencv 4.10.0 headless_py310h3d4b477_1 conda-forge libopenvino 2024.2.0 h2da1b83_1 conda-forge libopenvino-auto-batch-plugin 2024.2.0 hb045406_1 conda-forge libopenvino-auto-plugin 2024.2.0 hb045406_1 conda-forge libopenvino-hetero-plugin 2024.2.0 h5c03a75_1 conda-forge libopenvino-intel-cpu-plugin 2024.2.0 h2da1b83_1 conda-forge libopenvino-intel-gpu-plugin 2024.2.0 h2da1b83_1 conda-forge libopenvino-intel-npu-plugin 2024.2.0 he02047a_1 conda-forge libopenvino-ir-frontend 2024.2.0 h5c03a75_1 conda-forge libopenvino-onnx-frontend 2024.2.0 h07e8aee_1 conda-forge libopenvino-paddle-frontend 2024.2.0 h07e8aee_1 conda-forge libopenvino-pytorch-frontend 2024.2.0 he02047a_1 conda-forge libopenvino-tensorflow-frontend 2024.2.0 h39126c6_1 conda-forge libopenvino-tensorflow-lite-frontend 2024.2.0 he02047a_1 conda-forge libopus 1.3.1 h7f98852_1 conda-forge libpciaccess 0.18 hd590300_0 conda-forge libpng 1.6.43 h2797004_0 conda-forge libpq 16.3 ha72fbe1_0 conda-forge libprotobuf 4.25.3 h08a7969_0 conda-forge libpsl 0.21.2 h3253dac_2 conda-forge libraw 0.21.1 h2a13503_2 conda-forge libre2-11 2023.09.01 h5a48ba9_2 conda-forge librsvg 2.58.1 hadf69e7_0 conda-forge librttopo 1.1.0 h8917695_15 conda-forge libsanitizer 12.4.0 h46f95d5_0 conda-forge libscotch 7.0.4 h2fe6a88_5 conda-forge libsdformat14 14.4.0 h0de9998_0 conda-forge libselinux-cos7-x86_64 2.5 h9b0a68f_1105 conda-forge libsepol-cos7-x86_64 2.5 h9b0a68f_1105 conda-forge libsndfile 1.2.2 hc60ed4a_1 conda-forge libsodium 1.0.18 h36c2ea0_1 conda-forge libsoup 3.4.4 h5006749_2 conda-forge libspatialite 5.1.0 h7bd4643_4 conda-forge libspral 2024.05.08 hdf4021c_2 conda-forge libsqlite 3.46.0 hde9e2c9_0 conda-forge libssh2 1.11.0 h0841786_0 conda-forge libstdcxx-devel_linux-64 12.4.0 ha4f9413_100 conda-forge libstdcxx-ng 14.1.0 hc0a3c3a_0 conda-forge libsystemd0 255 h3516f8a_1 conda-forge libtasn1 4.19.0 h166bdaf_0 conda-forge libtheora 1.1.1 h4ab18f5_1006 conda-forge libtiff 4.6.0 h1dd3fc0_3 conda-forge libudev1 255 h3f72095_1 conda-forge libunistring 0.9.10 h7f98852_0 conda-forge libusb 1.0.27 h520f47e_100 conda-forge libuuid 2.38.1 h0b41bf4_0 conda-forge libuv 1.48.0 hd590300_0 conda-forge libva 2.21.0 h4ab18f5_2 conda-forge libvorbis 1.3.7 h9c3ff4c_0 conda-forge libvpx 1.14.1 hac33072_0 conda-forge libwebp 1.4.0 h2c329e2_0 conda-forge libwebp-base 1.4.0 hd590300_0 conda-forge libxcb 1.15 h0b41bf4_0 conda-forge libxcrypt 4.4.36 hd590300_1 conda-forge libxkbcommon 1.7.0 h662e7e4_0 conda-forge libxml2 2.12.7 h4c95cb1_3 conda-forge libxshmfence-cos7-x86_64 1.2 h9b0a68f_1105 conda-forge libxshmfence-devel-cos7-x86_64 1.2 h9b0a68f_1105 conda-forge libzip 1.10.1 h2629f0a_3 conda-forge libzlib 1.3.1 h4ab18f5_1 conda-forge loguru 0.7.2 py310hff52083_1 conda-forge lua 5.4.6 h2973eb6_1 conda-forge lz4-c 1.9.4 hcb278e6_0 conda-forge lzo 2.10 hd590300_1001 conda-forge make 4.3 hd18ef5c_1 conda-forge matplotlib 3.9.1 py310hff52083_0 conda-forge matplotlib-base 3.9.1 py310h0b1de36_0 conda-forge matplotlib-inline 0.1.7 pyhd8ed1ab_0 conda-forge mesa-khr-devel-cos7-x86_64 18.3.4 h9b0a68f_1105 conda-forge mesa-libgl-cos7-x86_64 18.3.4 h9b0a68f_1105 conda-forge mesa-libgl-devel-cos7-x86_64 18.3.4 h9b0a68f_1105 conda-forge mesa-libglapi-cos7-x86_64 18.3.4 h9b0a68f_1105 conda-forge metis 5.1.0 h59595ed_1007 conda-forge minizip 4.0.7 h401b404_0 conda-forge mpg123 1.32.6 h59595ed_0 conda-forge msgpack-python 1.0.8 py310h25c7140_0 conda-forge multidict 6.0.5 py310h2372a71_0 conda-forge mumps-include 5.7.2 ha770c72_0 conda-forge mumps-seq 5.7.2 h6e8dedb_0 conda-forge munkres 1.1.4 pyh9f0ad1d_0 conda-forge mysql-common 8.3.0 h70512c7_5 conda-forge mysql-libs 8.3.0 ha479ceb_5 conda-forge ncurses 6.5 h59595ed_0 conda-forge nettle 3.9.1 h7ab15ed_0 conda-forge ninja 1.12.1 h297d8ca_0 conda-forge nlohmann_json 3.11.3 h59595ed_0 conda-forge nspr 4.35 h27087fc_0 conda-forge nss 3.102 h593d115_0 conda-forge numpy 1.26.4 py310hb13e2d6_0 conda-forge ocl-icd 2.3.2 hd590300_1 conda-forge octomap 1.9.8 h924138e_0 conda-forge ogre 1.10.12.1 hb5e08f3_1 conda-forge ogre-next 2.3.3 h1b25c05_0 conda-forge onnxruntime-cpp 1.18.1 h0c98366_0_cpu conda-forge opencv 4.10.0 headless_py310h18fe71b_1 conda-forge openexr 3.2.2 haf962dd_1 conda-forge openh264 2.4.1 h59595ed_0 conda-forge openjpeg 2.5.2 h488ebb8_0 conda-forge openssl 3.3.1 h4bc722e_2 conda-forge p11-kit 0.24.1 hc5aa10d_0 conda-forge packaging 24.1 pyhd8ed1ab_0 conda-forge pango 1.54.0 h84a9a3c_0 conda-forge parso 0.8.4 pyhd8ed1ab_0 conda-forge pcl 1.14.1 hbf7b2d8_3 conda-forge pcre2 10.43 hcad00b1_0 conda-forge pexpect 4.9.0 pyhd8ed1ab_0 conda-forge pickleshare 0.7.5 py_1003 conda-forge pillow 10.3.0 py310hf73ecf8_0 conda-forge pip 24.1.2 pyhd8ed1ab_0 conda-forge pixman 0.43.2 h59595ed_0 conda-forge pkg-config 0.29.2 h4bc722e_1009 conda-forge ply 3.11 pyhd8ed1ab_2 conda-forge poppler 24.03.0 h590f24d_0 conda-forge poppler-data 0.4.12 hd8ed1ab_0 conda-forge portaudio 19.6.0 h7c63dc7_9 conda-forge postgresql 16.3 h8e811e2_0 conda-forge proj 9.3.1 h1d62c97_0 conda-forge prompt-toolkit 3.0.47 pyha770c72_0 conda-forge pthread-stubs 0.4 h36c2ea0_1001 conda-forge ptyprocess 0.7.0 pyhd3deb0d_0 conda-forge pugixml 1.14 h59595ed_0 conda-forge pulseaudio-client 17.0 hb77b528_0 conda-forge pure_eval 0.2.3 pyhd8ed1ab_0 conda-forge py-opencv 4.10.0 headless_py310h59be988_1 conda-forge pybind11 2.13.1 py310h25c7140_0 conda-forge pybind11-abi 4 hd8ed1ab_3 conda-forge pybind11-global 2.13.1 py310h25c7140_0 conda-forge pygments 2.18.0 pyhd8ed1ab_0 conda-forge pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge pyqt 5.15.9 py310h04931ad_5 conda-forge pyqt5-sip 12.12.2 py310hc6cd4ac_5 conda-forge pyqtwebengine 5.15.9 py310h704022c_5 conda-forge python 3.10.14 hd12c33a_0_cpython conda-forge python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge python_abi 3.10 4_cp310 conda-forge pyyaml 6.0.1 py310h2372a71_1 conda-forge pyzmq 26.0.3 py310h6883aea_0 conda-forge qhull 2020.2 h434a139_5 conda-forge qt-main 5.15.8 hc9dc06e_21 conda-forge qt-webengine 5.15.8 h3e791b3_6 conda-forge qt6-main 6.7.2 h402ef58_0 conda-forge qtpy 2.4.1 pyhd8ed1ab_0 conda-forge re2 2023.09.01 h7f4b329_2 conda-forge readline 8.2 h8228510_1 conda-forge rhash 1.4.4 hd590300_0 conda-forge ruby 3.3.3 h3da8d8b_0 conda-forge s2n 1.4.13 he19d79f_0 conda-forge sdl 1.2.68 h293081c_0 conda-forge sdl2 2.30.5 hef7aa77_0 conda-forge sip 6.7.12 py310hc6cd4ac_0 conda-forge six 1.16.0 pyh6c4a22f_0 conda-forge snappy 1.2.1 ha2e4443_0 conda-forge soxr 0.1.3 h0b41bf4_3 conda-forge spdlog 1.13.0 hd2e6256_0 conda-forge sqlite 3.46.0 h6d4b2fc_0 conda-forge stack_data 0.6.2 pyhd8ed1ab_0 conda-forge svt-av1 2.1.0 hac33072_0 conda-forge swig 4.2.1 hc9a1274_0 conda-forge sysroot_linux-64 2.17 h4a8ded7_16 conda-forge tbb 2021.12.0 h434a139_2 conda-forge tbb-devel 2021.12.0 h2069b90_2 conda-forge tiledb 2.21.2 h27f064a_4 conda-forge tinyxml 2.6.2 h4bd325d_2 conda-forge tinyxml2 10.0.0 h59595ed_0 conda-forge tk 8.6.13 noxft_h4845f30_101 conda-forge toml 0.10.2 pyhd8ed1ab_0 conda-forge tomli 2.0.1 pyhd8ed1ab_0 conda-forge tomlplusplus 3.3.0 hcb278e6_0 conda-forge tornado 6.4.1 py310hc51659f_0 conda-forge traitlets 5.14.3 pyhd8ed1ab_0 conda-forge typing-extensions 4.12.2 hd8ed1ab_0 conda-forge typing_extensions 4.12.2 pyha770c72_0 conda-forge tzcode 2024a h3f72095_0 conda-forge tzdata 2024a h0c530f3_0 conda-forge u-msgpack-python 2.8.0 pyhd8ed1ab_0 conda-forge unicodedata2 15.1.0 py310h2372a71_0 conda-forge unixodbc 2.3.12 h661eb56_0 conda-forge urdfdom 4.0.0 hee28ff1_1 conda-forge urdfdom_headers 1.1.1 h00ab1b0_0 conda-forge uriparser 0.9.8 hac33072_0 conda-forge utfcpp 4.0.5 ha770c72_0 conda-forge vtk 9.3.0 qt_py310h1234567_200 conda-forge vtk-base 9.3.0 qt_py310h1234567_200 conda-forge vtk-io-ffmpeg 9.3.0 qt_py310h1234567_200 conda-forge wayland 1.23.0 h5291e77_0 conda-forge wcwidth 0.2.13 pyhd8ed1ab_0 conda-forge wslink 2.1.1 pyhd8ed1ab_0 conda-forge x264 1!164.3095 h166bdaf_2 conda-forge x265 3.5 h924138e_3 conda-forge xcb-util 0.4.0 hd590300_1 conda-forge xcb-util-cursor 0.1.4 hd590300_1 conda-forge xcb-util-image 0.4.0 h8ee46fc_1 conda-forge xcb-util-keysyms 0.4.0 h8ee46fc_1 conda-forge xcb-util-renderutil 0.3.9 hd590300_1 conda-forge xcb-util-wm 0.4.1 h8ee46fc_1 conda-forge xerces-c 3.2.5 hac6953d_0 conda-forge xkeyboard-config 2.42 h4ab18f5_0 conda-forge xorg-compositeproto 0.4.2 h7f98852_1001 conda-forge xorg-damageproto 1.2.1 h7f98852_1002 conda-forge xorg-fixesproto 5.0 h7f98852_1002 conda-forge xorg-inputproto 2.3.2 h7f98852_1002 conda-forge xorg-kbproto 1.0.7 h7f98852_1002 conda-forge xorg-libice 1.1.1 hd590300_0 conda-forge xorg-libsm 1.2.4 h7391055_0 conda-forge xorg-libx11 1.8.9 h8ee46fc_0 conda-forge xorg-libxau 1.0.11 hd590300_0 conda-forge xorg-libxaw 1.0.14 h7f98852_1 conda-forge xorg-libxcomposite 0.4.6 h0b41bf4_1 conda-forge xorg-libxdamage 1.1.5 h7f98852_1 conda-forge xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge xorg-libxext 1.3.4 h0b41bf4_2 conda-forge xorg-libxfixes 5.0.3 h7f98852_1004 conda-forge xorg-libxi 1.7.10 h4bc722e_1 conda-forge xorg-libxinerama 1.1.5 h27087fc_0 conda-forge xorg-libxmu 1.1.3 h4ab18f5_1 conda-forge xorg-libxpm 3.5.17 hd590300_0 conda-forge xorg-libxrandr 1.5.2 h7f98852_1 conda-forge xorg-libxrender 0.9.11 hd590300_0 conda-forge xorg-libxt 1.3.0 hd590300_1 conda-forge xorg-libxtst 1.2.4 h4bc722e_0 conda-forge xorg-libxxf86vm 1.1.5 h4bc722e_1 conda-forge xorg-randrproto 1.5.0 h7f98852_1001 conda-forge xorg-recordproto 1.14.2 h7f98852_1002 conda-forge xorg-renderproto 0.11.1 h7f98852_1002 conda-forge xorg-util-macros 1.19.3 h7f98852_0 conda-forge xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge xorg-xf86vidmodeproto 2.3.1 h7f98852_1002 conda-forge xorg-xproto 7.0.31 h7f98852_1007 conda-forge xz 5.2.6 h166bdaf_0 conda-forge yaml 0.2.5 h7f98852_2 conda-forge yarl 1.9.4 py310h2372a71_0 conda-forge zeromq 4.3.5 h75354e8_4 conda-forge zlib 1.3.1 h4ab18f5_1 conda-forge zstd 1.5.6 ha6fb4c9_0 conda-forge zziplib 0.13.69 he45264a_2 conda-forge ```