My company\'s network is using proxy. So when I use vagrant up, it showed me a 401 permission error.
vagrant up
How can I do some setting to use vagrant?
In PowerShell, you could set the http_proxy and https_proxy environment variables like so:
$env:http_proxy="http://proxy:3128" $env:https_proxy="http://proxy:3128"