I am encountering an issue with the NGC CLI (version 3.54.0) on my Linux machine. When I run the command:
ngc config set
It fails with the error:
[Errno -2] Name or service not known
Troubleshooting Steps Taken So Far
-
Network Connectivity:
- Internet is working fine, and I can ping google.com successfully.
- Running curl -v https://ngc.nvidia.com works and shows an HTTP 301 redirect to https://catalog.ngc.nvidia.com.
-
Reinstallation:
- I downloaded and reinstalled the NGC CLI from the official NVIDIA site:
bash
wget --content-disposition https://api.ngc.nvidia.com/v2/resources/nvidia/ngc-apps/ngc_cli/versions/3.54.0/files/ngccli_linux.zip
unzip ngccli_linux.zip
chmod +x ngc-cli/ngc
export PATH=$PATH:$(pwd)/ngc-cli
- I downloaded and reinstalled the NGC CLI from the official NVIDIA site:
System Details
- OS: Ubuntu Linux
- NGC CLI Version: 3.54.0
- Proxy: Yes (details hidden)
- Network: Verified to be working (direct and through proxy)
Request
How can I resolve the Errno -2 error and complete the ngc config set command? Is there a specific configuration required for proxies or DNS that I might be missing?
Thank you in advance for your assistance.