SOLVED get pip working in iocage

nojohnny101

Wizard
Joined
Dec 3, 2015
Messages
1,478
I'm trying to get a GitHub library working in a jail.

I couldn't find out how to install pip inside of the icoage jail, which would make the install seamless. So I cloned the repo but it is missing some required dependent libraries. Using pip would take care of these dependencies.

I tried searching and the only thread I could find was this one: https://github.com/morpheus65535/bazarr/issues/642

But that didn't work for me because it can't find the pip module.

Any ideas who I can get pip working in iocage?

Thanks for the help!
 

sretalla

Powered by Neutrality
Moderator
Joined
Jan 1, 2016
Messages
9,703
I was able to use the requirements.txt file after installing:

pkg install py37-pip libxml2 libxslt

pip install -r requirements.txt
 
Top