Closed AndrejOrsula closed 2 years ago
The cli
is not part of gz-transport12-cli
and it is a suggested package when installing libgz-tranpsport12
. In your Dockerfile, you have --no-install-recommends
, which might be preventing gz-transport12-cli
from being installed.
@j-rivero would it be a good idea to make gz-transport12-cli
and other -cli
packages listed in the garden metapackage?
Thank you very much @azeey!
You are correct that I am missing gz-transport12-cli
(and gz-launch6-cli
), both of which are listed as suggested packages. As they are suggested and not recommended, --no-install-recommends
does not have an effect on installing them. In order to enable their installation, --install-suggests
flag must be used because suggests are disabled by default in Ubuntu.
[SOLUTION] Therefore, either of these approaches will enable topic
, service
and launch
commands.
apt install gz-garden gz-transport12-cli gz-launch6-cli
apt install --install-suggests gz-garden
apt install --no-install-recommends --install-suggests gz-garden
However, I would argue that these packages should be recommended or even required, mainly because apt install --install-suggests gz-garden
brings along several other packages such as the entire TeX Live stack with all fonts and even a bunch of Ubuntu wallpapers.
Thank you again for your help.
Thanks @AndrejOrsula so much for the information. We are tracking changes and decisions that affects all the packaging in https://github.com/gazebosim/gz-tools/issues/111.
This has been fixed in 1.0.0~pre1-3
gz-garden release. The CI is now happy to test all the expected submodules: https://build.osrfoundation.org/job/gz_garden-install-pkg-focal-amd64/13/console#console-section-1
CLI
gz <command>
of Gazebogarden
no longer supportstopic
,service
andlaunch
commands. These commands are still available in Ignitionfortress
viaign <command>
.Environment
focal
(local & Docker) | Ubuntu 22.04jammy
(Docker)gz-garden
Description
gz topic ...
andgz service ...
, which are required to follow/review tutorials.garden
.Steps to reproduce
Build with the following variants (at least 1x
garden
and 1xfortress
):Observe that
gz <command>
forgarden
does not havetopic
,service
andlaunch
commandsObserve that
ign <commands>
forfortress
has these commandsPlease, let me know if I misinterpreted something and if this behaviour is expected.