We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f40d50c commit 33e7b59Copy full SHA for 33e7b59
install_simp_le.sh
@@ -3,7 +3,7 @@
3
set -e
4
5
# 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
+apk --update add python py-setuptools git gcc py-pip musl-dev libffi-dev python-dev openssl-dev
7
8
# Get Let's Encrypt simp_le client source
9
branch="master"
@@ -12,7 +12,12 @@ git -C /src clone --depth=1 --branch $branch https://github.com/zenhack/simp_le.
12
13
# Install simp_le in /usr/bin
14
cd /src/simp_le
15
-python ./setup.py install
+#pip install wheel requests
16
+for pkg in pip distribute setuptools wheel
17
+do
18
+ pip install -U "${pkg?}"
19
+done
20
+pip install .
21
22
# Make house cleaning
23
cd /
0 commit comments