Hi all, I’ve got a typical newbie problem. How can I use Julia behind a corporate proxy with authentication? I already set http_proxy
in the env and git works due to --global http.proxy
magic. I’ts a simple download that causes the failure:
julia> Pkg.add("IJulia")
INFO: Installing BinaryProvider v0.3.3
INFO: Installing Compat v1.0.0
INFO: Installing Conda v1.0.0
INFO: Installing IJulia v1.9.1
INFO: Installing JSON v0.17.2
INFO: Installing MbedTLS v0.5.12
INFO: Installing Nullables v0.0.6
INFO: Installing SHA v0.5.7
INFO: Installing VersionParsing v1.1.1
INFO: Installing ZMQ v0.6.3
INFO: Building Conda
INFO: Building MbedTLS
Info: Downloading https://github.com/JuliaWeb/MbedTLSBuilder/releases/download/v0.11/MbedTLS.v1.0.0.x86_64-w64-mingw32.tar.gz to C:\Users\ie10s\.julia\v0.6\MbedTLS\deps\usr\downloads\MbedTLS.v1.0.0.x86_64-w64-mingw32.tar.gz...
Ausnahme beim Aufrufen von "DownloadFile" mit 2 Argument(en): "Der
Remoteserver hat einen Fehler zurckgegeben: (407) Proxyauthentifizierung
erforderlich."
In Zeile:4 Zeichen:1
+ $webclient.DownloadFile("https://github.com/JuliaWeb/MbedTLSBuilder/releases/
dow ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : WebException
How can I inform julia about the proxy situation? Most tools have problems with this proxy/authentication settings.
Any help is greatly apreciated!
Cheers, Jörg