I try to install MLRun==1.1.2 via python pip and I got this error message
(venv) PS C:\Python\mlrun_remote> pip install mlrun==1.1.2
Collecting mlrun==1.1.2
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] cer
tificate verify failed: self signed certificate in certificate chain (_ssl.c:1091)'))': /packages/87/d1/b3f8a382d583647d9dd29e97c128848530f48bc57170c38bed8d9ba2bd11/mlrun-1.1.2-py3-none-any.wh
l
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] cer
tificate verify failed: self signed certificate in certificate chain (_ssl.c:1091)'))': /packages/87/d1/b3f8a382d583647d9dd29e97c128848530f48bc57170c38bed8d9ba2bd11/mlrun-1.1.2-py3-none-any.wh
l
...
WARNING: You are using pip version 21.3.1; however, version 22.3.1 is available.
You should consider upgrading via the 'C:\Python\mlrun_remote\venv\Scripts\python.exe -m pip install --upgrade pip' command.
How to install it?
>Solution :
The issue is, that you are without access to internet. It means, you have to do these three steps:
- download install sources via this command:
pip download mlrun==1.1.2 -d /v3io/bigdata/mlrun_dist
-
move these sources to your environment (without access to internet)
-
run off-line installation
pip install --no-index --find-links /v3io/bigdata/mlrun_dist/ mlrun==1.1.2