File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -9,15 +9,16 @@ if [[ "$(uname)" == Darwin ]]; then
9
9
brew uninstall --ignore-dependencies --force $pkg || true
10
10
done
11
11
12
- conda install -yq wget
12
+ conda install -y wget
13
13
fi
14
14
15
15
if [[ " $( uname) " == Darwin || " $OSTYPE " == " msys" ]]; then
16
- conda install libpng libwebp -yq
16
+ conda install libpng libwebp -y
17
17
# Installing webp also installs a non-turbo jpeg, so we uninstall jpeg stuff
18
18
# before re-installing them
19
19
conda uninstall libjpeg-turbo libjpeg -y
20
- conda install -yq ffmpeg=4.2 libjpeg-turbo -c pytorch
20
+ conda install -y ffmpeg=4.2 -c pytorch
21
+ conda install -y libjpeg-turbo -c pytorch
21
22
22
23
# Copy binaries to be included in the wheel distribution
23
24
if [[ " $OSTYPE " == " msys" ]]; then
@@ -28,11 +29,11 @@ if [[ "$(uname)" == Darwin || "$OSTYPE" == "msys" ]]; then
28
29
else
29
30
30
31
if [[ " $ARCH " == " aarch64" ]]; then
31
- conda install libpng -yq
32
- conda install -yq ffmpeg=4.2 libjpeg-turbo -c pytorch-nightly
32
+ conda install libpng -y
33
+ conda install -y ffmpeg=4.2 libjpeg-turbo -c pytorch-nightly
33
34
fi
34
35
35
- conda install libwebp -yq
36
+ conda install libwebp -y
36
37
conda install libjpeg-turbo -c pytorch
37
38
yum install -y freetype gnutls
38
39
pip install auditwheel
You can’t perform that action at this time.
0 commit comments