Skip to content

Commit dec2e5d

Browse files
okakarpaethanwee1
andauthored
[AUTOGENERATED] [release/2.7] Remove --no-index and --no-deps flags (#2123)
Cherry-pick of #2103 Co-authored-by: Ethan Wee <[email protected]>
1 parent f717b2a commit dec2e5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.ci/pytorch/common_utils.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ function pip_install_whl() {
6767
# Loop through each path and install individually
6868
for path in "${paths[@]}"; do
6969
echo "Installing $path"
70-
python3 -mpip install --no-index --no-deps "$path"
70+
python3 -mpip install "$path"
7171
done
7272
else
7373
# Loop through each argument and install individually
7474
for path in "${args[@]}"; do
7575
echo "Installing $path"
76-
python3 -mpip install --no-index --no-deps "$path"
76+
python3 -mpip install "$path"
7777
done
7878
fi
7979
}

0 commit comments

Comments
 (0)