-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error building conda-rdkit behind a firewall #81
Comments
you may probably need to add the *_proxy environment variables to the meta.yaml build section, as documented in the "Use environment variables" paragraph of https://conda.io/projects/conda-build/en/latest/resources/define-metadata.html#build-section, so that the settings become available to curl when executing in the conda build sub-shell. |
Hi Riccardo, Thanks for your help. However, although defining the environment variables through the meta.yaml file (see enclosed code) make them available, the conda build process keep on failing due to the same exact curl error (curl: (6) Could not resolve host: www.inchi-trust.org):
Any ideas? |
Hi again, Apparently, it is a case sensitive issue, as when I defined the variables lower case, it worked just fine:
Thanks for your help. |
Hello,
I'm trying to build binary RDKit packages on conda. As I'm behind a firewall I've configured the corresponding proxy server in both the environment (export {https,http,ftp}_proxy=https://user:password@proxy:port/) and the conda configuration file (.condarc).
Everything goes smoothly on running the "conda build rdkit" until the program tries to build the InChI support when, apparently, curl is not able to download the source code from http://www.inchi-trust.org:
However, I've tried curl manually and it works just fine:
Is there any trick to bypass this situation?
The text was updated successfully, but these errors were encountered: