Closed edknv closed 1 year ago
gpu-multi / tensorflow (pull_request) in the CI fails with:
gpu-multi / tensorflow (pull_request)
FileNotFoundError: [Errno 2] No such file or directory: '/usr/local/lib/python3.8/dist-packages/horovod/openmpi_dist/bin/mpirun'
in https://github.com/NVIDIA-Merlin/models/pull/1110 for example, because SOK requires horovod and reinstalls it, overwriting the horovod installation in the ci-runner. This PR fixes that by adding --no-deps so that SOK does not install dependencies. We run setup.py in development mode because python install setup.py does not support --no-deps.
--no-deps
setup.py
python install setup.py
https://nvidia-merlin.github.io/models/review/pr-1138
gpu-multi / tensorflow (pull_request)
in the CI fails with:in https://github.com/NVIDIA-Merlin/models/pull/1110 for example, because SOK requires horovod and reinstalls it, overwriting the horovod installation in the ci-runner. This PR fixes that by adding
--no-deps
so that SOK does not install dependencies. We runsetup.py
in development mode becausepython install setup.py
does not support--no-deps
.