Skip to content

Commit 4c9d63d

Browse files
authored
Merge pull request #222 from ecobytes/master
install simp_le from master branch + make that work, fixes #221
2 parents d777195 + 33e7b59 commit 4c9d63d

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

install_simp_le.sh

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,21 @@
33
set -e
44

55
# Install python packages needed to build simp_le
6-
apk --update add python py-requests py-setuptools git gcc py-pip musl-dev libffi-dev python-dev openssl-dev
6+
apk --update add python py-setuptools git gcc py-pip musl-dev libffi-dev python-dev openssl-dev
77

88
# Get Let's Encrypt simp_le client source
9-
branch="0.2.0"
9+
branch="master"
1010
mkdir -p /src
1111
git -C /src clone --depth=1 --branch $branch https://github.com/zenhack/simp_le.git
1212

1313
# Install simp_le in /usr/bin
1414
cd /src/simp_le
15-
python ./setup.py install
15+
#pip install wheel requests
16+
for pkg in pip distribute setuptools wheel
17+
do
18+
pip install -U "${pkg?}"
19+
done
20+
pip install .
1621

1722
# Make house cleaning
1823
cd /

0 commit comments

Comments
 (0)