File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ retry () {
23
23
# TODO move this into the Docker images
24
24
OS_NAME=` awk -F= ' /^NAME/{print $2}' /etc/os-release`
25
25
if [[ " $OS_NAME " == * " CentOS Linux" * ]]; then
26
- retry yum install -q -y zip openssl
26
+ retry yum install -q -y zip openssl openssl-devel
27
27
elif [[ " $OS_NAME " == * " Ubuntu" * ]]; then
28
28
retry apt-get update
29
- retry apt-get -y install zip openssl
29
+ retry apt-get -y install zip openssl libssl-dev
30
30
fi
31
31
32
32
# We use the package name to test the package by passing this to 'pip install'
Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ retry () {
23
23
# TODO move this into the Docker images
24
24
OS_NAME=` awk -F= ' /^NAME/{print $2}' /etc/os-release`
25
25
if [[ " $OS_NAME " == * " CentOS Linux" * ]]; then
26
- retry yum install -q -y zip openssl
26
+ retry yum install -q -y zip openssl openssl-devel
27
27
elif [[ " $OS_NAME " == * " Ubuntu" * ]]; then
28
28
retry apt-get update
29
- retry apt-get -y install zip openssl
29
+ retry apt-get -y install zip openssl libssl-dev
30
30
fi
31
31
32
32
# Version: setup.py uses $PYTORCH_BUILD_VERSION.post$PYTORCH_BUILD_NUMBER if
You can’t perform that action at this time.
0 commit comments