Written by

Question Alin Soare · May 28, 2024

OPENSSL_Uplink(....): no OPENSSL_Applink

Hi,

In my Iris Installation I cannot use python. When I try to install external libraries I get no OPENSSL_Applink:

$ pwd
/cygdrive/c/InterSystems/IRIS2/bin
$ ./irispip install --target ../Mgr/python/ pandas
OPENSSL_Uplink(00007FFBEC2F7068,08): no OPENSSL_Applink

I get the same error when I try to install a wheel file:

$ ../../bin/irispip install ./intersystems_irispython-3.2.0-py3-none-any.whl
Processing c:\intersystems\iris2\dev\python\intersystems_irispython-3.2.0-py3-none-any.whl
Installing collected packages: intersystems-irispython
Successfully installed intersystems-irispython-3.2.0
OPENSSL_Uplink(00007FFBCBE37068,08): no OPENSSL_Applink

I am using IRIS for Windows (x86-64) 2024.1 (Build 262) Thu Mar 7 2024 15:57:00 EST and I tried to install 2024.2 and it happens the same in both cases.

Any ideas, please ?

Kind regards,

Alin C Soare.

Comments

Timo Lindenschmid · May 28, 2024

Hi Alin,
I can see that you are using cygwin to interact with *nix version of python.
Any reason why you are not using the windows version? 
Best regards
Timo

0
Alin Soare  May 29, 2024 to Timo Lindenschmid

Hi Timo, 
Thank you for your message.  To make a comparison with Cmd Admin, here it is:


c:\InterSystems\IRIS2\bin>irispip install --target ..\Mgr\python pandas
OPENSSL_Uplink(00007FFBD8047068,08): no OPENSSL_Applink
 

0
Eduard Lebedyuk · May 29, 2024

Had the same issue. Solved by removing these env vars:

$env:SSLKEYLOGFILE=""$env:PYENV_ROOT=""$env:PYENV_HOME=""$env:PYENV=""

Thanks @Philip Miloslavsky!

0
Alin Soare  May 29, 2024 to Eduard Lebedyuk

Thank you :)

After I removed SSLKEYLOGFILE everything worked correctly.  I kept this variable active for wireshark.

0