Browse Source

libssl-dev added as dependency

master
Candle 6 years ago committed by GitHub
parent
commit
84a4ab2e79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      install.sh

4
install.sh

@ -15,13 +15,13 @@ deps_install ()
{ {
if [[ ${install_os} == 'debian' ]]; then if [[ ${install_os} == 'debian' ]]; then
if is_python3; then if is_python3; then
if deb_deps_install "python-virtualenv curl python3-dev python3-pip build-essential automake pkg-config libtool libgmp-dev libltdl-dev"; then if deb_deps_install "python-virtualenv curl python3-dev python3-pip build-essential automake pkg-config libtool libgmp-dev libltdl-dev libssl-dev"; then
return 0 return 0
else else
return 1 return 1
fi fi
else else
if deb_deps_install "python-virtualenv curl python-dev python-pip build-essential automake pkg-config libtool libgmp-dev libltdl-dev"; then if deb_deps_install "python-virtualenv curl python-dev python-pip build-essential automake pkg-config libtool libgmp-dev libltdl-dev libssl-dev"; then
return 0 return 0
else else
return 1 return 1

Loading…
Cancel
Save