-
what's the equivalent of this command for conda pip_add? pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org |
Beta Was this translation helpful? Give feedback.
Answered by
cjdoris
Jun 2, 2023
Replies: 1 comment 3 replies
-
This can't currently be done at the command line. I think setting the env var |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
gyansinha
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This can't currently be done at the command line. I think setting the env var
PIP_TRUSTED_HOST="pypi.org pypi.python.org files.pythonhosted.org"
will do it, or you can edit your pip.conf file.