You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
configs/templates/PUBLIC_dependencies.txt uses python prefix for keys of python-setuptools. However, docker/workload/Dockerfile-ubuntu_cb_nullworkload uses python3 prefix for keys of python-setuptools. The mismatch leads to the following error when running install script. The error causes install script abort without installing all required dependencies.
[2024-07-08 06:11:43,078] [ERROR] dependencies.py/get_cmdline - ######## Error! The command to install the dependency python-setuptools is empty!
Fix: modify Dockerfile-ubuntu_cb_nullworkload as below:
# python-setuptools-install-pip
RUN pip3 install --upgrade setuptools
# python-setuptools-install-pip
The text was updated successfully, but these errors were encountered:
configs/templates/PUBLIC_dependencies.txt
usespython
prefix for keys of python-setuptools. However,docker/workload/Dockerfile-ubuntu_cb_nullworkload
usespython3
prefix for keys of python-setuptools. The mismatch leads to the following error when running install script. The error causes install script abort without installing all required dependencies.Fix: modify
Dockerfile-ubuntu_cb_nullworkload
as below:The text was updated successfully, but these errors were encountered: