From 604972bd298751a49c75f55d86ee44d175ccea08 Mon Sep 17 00:00:00 2001 From: Guang Yang Date: Fri, 25 Aug 2023 13:31:30 -0700 Subject: [PATCH] Fix timm installation Summary: bug fix Reviewed By: larryliu0820 Differential Revision: D48697288 fbshipit-source-id: 6cc2e411fb09ea42d15c94ea5cd7cb72db6b75ef --- examples/install_requirements.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/install_requirements.sh b/examples/install_requirements.sh index 1ffe6425436..c0d9e390061 100755 --- a/examples/install_requirements.sh +++ b/examples/install_requirements.sh @@ -24,4 +24,4 @@ TORCH_AUDIO_VERSION=2.1.0.dev20230813 pip install --force-reinstall --pre torchaudio=="${TORCH_AUDIO_VERSION}" -i https://download.pytorch.org/whl/nightly/cpu TIMM_VERSION=0.6.13 -pip install --pre timm=${TIMM_VERSION} +pip install --pre timm==${TIMM_VERSION}