Proxy woes

Hi all,
I’m trying to set up Julia at a new workplace and am having some problems with the proxy.

I’m using a fresh install of Julia 1.3 on Windows 10.
I’ve set

ENV["HTTP_PROXY"]="http://proxy_address:proxy_port"
ENV["HTTPS_PROXY"]="http://proxy_address:proxy_port

In the startup.jl file, which allows PKG to successfully download most packages. However the download function still fails, preventing installation of some packages like GR and FFMPEG.
The error is "Exception calling “DownloadFile” with “2” argument(s): “The remote server returned an error: (407) Proxy Authentication Required.”
Anyone know how to fix this?
Thanks

1 Like

Hello,

I ran into similar issues, you might want to check out the following explanation.

br

1 Like

I don’t know if it is the same issue but I solved my proxy woes by adding a trailing / to the names:

ENV["HTTP_PROXY"]="http://proxy_address:proxy_port/"

See Problem cloning registry in 1.3.1