I'm trying to add python packages to my Choregraphe app because some packages that are installed by default with python 2.7 aren't in python embedded in Choregraphe.
I want to add urllib3
and certifi
to my app to be able to sen HTTPS requests and verify SSL certificates.
So I added a lib
folder to my app with the necessary packages, it works fine for urllib3
but to verify SSL certificates I got a cascade of dependencies so I don't manage to do what I want.
Does anyone know if there is a way to access manually the default python version accessible by my Robot so that I can send my request with these packages ?
Thanks in advance !