Hello,
In Isaac Sim docker container 2022.1.0, when I launch the file “./run_all_tests.sh”, the system is looking at “urm.nvidia.com”. The exact line is:
Looking in indexes: https://urm.nvidia.com/artifactory/api/pypi/ct-omniverse-mirror-pypi/simple
But urm.nvidia.com doesn’t exist (I’m in France). The error is:
Failed to establish a new connection: [Errno -5] No address associated with hostname
Someone has an idea ?
Maybe the same problem than /etc/apt/sources.list (it’s the same website “urm.nvidia.com”
Thanks
Goupil
You can run this in the container to reset the sources.list:
echo “deb Index of /ubuntu bionic main restricted”>/etc/apt/sources.list \
echo “deb Index of /ubuntu bionic-updates main restricted”>>/etc/apt/sources.list \
echo “deb Index of /ubuntu bionic universe”>>/etc/apt/sources.list \
echo “deb Index of /ubuntu bionic-updates universe”>>/etc/apt/sources.list \
echo “deb Index of /ubuntu bionic multiverse”>>/etc/apt/sources.list \
echo “deb Index of /ubuntu bionic-updates multiverse”>>/etc/apt/sources.list \
echo “deb Index of /ubuntu bionic-backports main restricted universe multiverse”>>/etc/apt/sources.list \
echo “deb Index of /ubuntu bionic-security main restricted”>>/etc/apt/sources.list \
echo “deb Index of /ubuntu bionic-security universe”>>/etc/apt/sources.list \
echo “deb Index of /ubuntu bionic-security multiverse”>>/etc/apt/sources.list
Run this to reset the pip3 config:
rm ~/.pip/pip.conf
The above fixes will be available in Isaac Sim 2022.1.1
Hello,
Sheikh, thanks for the reply.
For those who are not familiar with “index of /ubuntu”, you need to replace it with Index of /ubuntu and Index of /ubuntu for the last 3 lines.
To be clear, here is my configuration:
deb Index of /ubuntu bionic main restricted
deb Index of /ubuntu bionic-updates main restricted
deb Index of /ubuntu bionic universe
deb Index of /ubuntu bionic-updates universe
deb Index of /ubuntu bionic multiverse
deb Index of /ubuntu bionic-updates multiverse
deb Index of /ubuntu bionic-backports main restricted universe multiverse
deb Index of /ubuntu bionic-security main restricted
deb Index of /ubuntu bionic-security universe
deb Index of /ubuntu bionic-security multiverse
Perfect for removing pip.conf, it’s working now.
Goupil