I tried to use proxy configuration for faster connection on my git
, my config was git config --global http.proxy socks5://127.0.0.1:1080
, and it works fine with git
. However, after applying this, my Julia package installation fails as following:
(@v1.6) pkg> add IJulia
Installing known registries into `C:\Users\kyu\.julia`
Cloning registry from "https://github.com/JuliaRegistries/General.git"
ERROR: failed to clone from https://github.com/JuliaRegistries/General.git, error: GitError(Code:ERROR, Class:HTTP, invalid URL: 'socks5://127.0.0.1:1080')
If I unset proxy by git config --global --unset http.proxy
it goes back to normal.
Moreover, I would like to ask, in this case, I successfully git clone
the repository using git
, how can I install this package locally on Julia so I can skip the proxy issue?