Hello,
I am trying to install Python dependencies for the scripted connectors.
Is it possible to add local Python libraries? For example, I downloaded a "tar" package of a library and I want to install it. Due to dependencies, it won't install.
Unfortunately, I keep encountering this error:
Is it necessary to have an internet connection?
What are the dependencies?
Thanks!
Hi,
Yes, it should be possible to add local dependencies as pip does download them and place them in the local file so if you were to download them on a different system and place them in the folder mentioned in the Docs it should work.
In your case, it looks like the dependency you are trying to install has itself other dependencies that may need to be downloaded as well.
The easiest way would probably be to use pip with internet access directly in the server or alternatively do it on a different system and then copy over the resulting folders.
Ok
I will try to get internet access
thank you