This repository was archived by the owner on Aug 15, 2025. It is now read-only.
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 () {
2323# TODO move this into the Docker images
2424OS_NAME=` awk -F= ' /^NAME/{print $2}' /etc/os-release`
2525if [[ " $OS_NAME " == * " CentOS Linux" * ]]; then
26- retry yum install -q -y zip openssl
26+ retry yum install -q -y zip openssl openssl-devel
2727elif [[ " $OS_NAME " == * " Ubuntu" * ]]; then
2828 retry apt-get update
29- retry apt-get -y install zip openssl
29+ retry apt-get -y install zip openssl libssl-dev
3030fi
3131
3232# 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 () {
2323# TODO move this into the Docker images
2424OS_NAME=` awk -F= ' /^NAME/{print $2}' /etc/os-release`
2525if [[ " $OS_NAME " == * " CentOS Linux" * ]]; then
26- retry yum install -q -y zip openssl
26+ retry yum install -q -y zip openssl openssl-devel
2727elif [[ " $OS_NAME " == * " Ubuntu" * ]]; then
2828 retry apt-get update
29- retry apt-get -y install zip openssl
29+ retry apt-get -y install zip openssl libssl-dev
3030fi
3131
3232# Version: setup.py uses $PYTORCH_BUILD_VERSION.post$PYTORCH_BUILD_NUMBER if
You can’t perform that action at this time.
0 commit comments