I'm trying to install the package azure-functions-core-tools with npm but I get the following error
I'm using this command to run the install
npm install -g azure-functions-core-tools
I don't understand why is trying to use a proxy by default. I haven't set any proxy.
I've tried the following codes to remove the proxy tunnelling:
npm config rm proxy
npm config rm https-prox
npm config --global rm proxy
npm config --global rm https-proxy
set HTTP_PROXY=null
set HTTPS_PROXY=null
After running that code I get a different error
I also reinstalled NodeJS and deactivated all VPNs and Antivirus.
The idea is to install the CLI to authenticate to Visual Studio Code to start creating Azure Functions.

