We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea4b4bd commit f047756Copy full SHA for f047756
files/build_templates/sonic_debian_extension.j2
@@ -102,6 +102,9 @@ sudo dpkg --root=$FILESYSTEM_ROOT -i target/debs/python-click*_all.deb || \
102
# using pip install instead to get a more recent version than is available through debian
103
sudo https_proxy=$https_proxy LANG=C chroot $FILESYSTEM_ROOT pip install pexpect
104
105
+# Install tabulate >= 0.8.1 via pip in order to support multi-line row output for sonic-utilities
106
+sudo https_proxy=$https_proxy LANG=C chroot $FILESYSTEM_ROOT pip install tabulate==0.8.2
107
+
108
# Install SONiC Utilities (and its dependencies via 'apt-get -y install -f')
109
sudo dpkg --root=$FILESYSTEM_ROOT -i target/debs/python-sonic-utilities_*.deb || \
110
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y install -f
0 commit comments