From 39f1afb825678c47c7dda17017a30d190baf9c00 Mon Sep 17 00:00:00 2001 From: Amir MOHAMMADI <amir.mohammadi@idiap.ch> Date: Wed, 30 Jun 2021 14:44:56 +0200 Subject: [PATCH] [bootstrap.py] use http for miniconda installer --- bob/devtools/bootstrap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py index 22bcd66b..837bb485 100644 --- a/bob/devtools/bootstrap.py +++ b/bob/devtools/bootstrap.py @@ -232,10 +232,10 @@ def ensure_miniconda_sh(): # re-downloads installer import http.client - server = ("bobconda.lab.idiap.ch", 8443) # http + server = ("bobconda.lab.idiap.ch", 8000) # http logger.info("Connecting to http://%s:%d...", *server) - conn = http.client.HTTPSConnection(server[0], port=server[1]) + conn = http.client.HTTPConnection(server[0], port=server[1]) conn.request("GET", path) r1 = conn.getresponse() -- GitLab