<#336 pex does not use .pip/pip.conf to resolve pa...
# github-notifications
c
#336 pex does not use .pip/pip.conf to resolve packages Issue created by salimfadhley I'm able to install some packages with Pip like this:
(venv) [me@myhost glances]$ pip install -r requirements_glances.txt
However when I attempt an equivalent syntax with Pex I get the following:
Copy code
(venv) [me@myhost glances]$ pex -r requirements_glances.txt -o glances.pex
Could not satisfy all requirements for glances:
    glances
It looks like Pex doesn't honor my site config (in ~/.pip/pip.conf) - is there any way to explicitly change the index that Pex uses when resolving requirements? pantsbuild/pex