JuliaPro1.5.0: could not download https://pkg.juliahub.com/registries

Hi @jasonhnicholson,
I am in the same boat as you. Here is what I did to get the update to work. In the REPL, I ran the following command:

julia> ENV["JULIA_PKG_SERVER"] = "us-west.pkg.julialang.org"

to set the JULIA_PKG_SERVER environment variable. Then I updated the packages:

julia> using Pkg
julia> Pkg.update()

Hope this helps.

I found the method to change the env variable here

2 Likes

Thank you!