-
Notifications
You must be signed in to change notification settings - Fork 90
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
Internal GitHub downloader doesn't configure proxy #624
Comments
We worked around this by removing devtools from the R installations being used in Connect. |
See also: Lines 9 to 25 in 6dd9d59
Lines 9 to 11 in 6dd9d59
We could provide some mechanism for overriding the default Packrat behaviors here. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We saw this issue in a Connect customer environment.
They have a proxy for internet access.
http_proxy
andhttps_proxy
environment variables are set when packrat is invoked. Packrat has no trouble installing packages from CRAN.What we saw is:
download.file.method
to becurl
, and sets some curl options.devtools
andhttr
installed, uses its internal GitHub downloader which uses httr.http_proxy
andhttps_proxy
.Some ideas for fixes include always using the configured downloader, or configuring httr's proxy settings based on the standard proxy environment variables.
The text was updated successfully, but these errors were encountered: