NVIDIA TAO AutoML bare metal setup issues

Trying to set up my PC to run TAO toolkit AutoML jupyter notebook.
The issue I have is when I run this script:

sudo bash setup.sh check-inventory.yml

It returns this error:

joev@joev-OMEN-by-HP-Obelisk-Desktop-875-1xxx:~/getting_started_v4.0.0/setup/quickstart_api_bare_metal
$ sudo bash setup.sh install
Installing ansible
E: The repository ‘Index of /videolan/stable-daily/ubuntu focal Release’ does not have a Release file.

Please have a look at the setup.sh.
When running in “install ansible”, it is

    if [[ ${os} == "ubuntu" && ${os_version} == "20.04"  ]]; then
      echo "Installing ansible"
      {
        sudo apt-get update
        sudo apt-get install ansible sshpass -y
      } > /dev/null
    fi
    if [[ $os == "ubuntu" && $os_version == "18.04" ]]; then
      echo "Installing ansible"
      {
        sudo apt-add-repository ppa:ansible/ansible -y
        sudo apt-get update
        sudo apt-get install ansible sshpass -y
      } > /dev/null

So, please directly run the command “sudo apt-get update” to check if the same error happens.

To get it to work I just ran the command:
sudo apt-get install ansible sshpass -y

Now While running :

sudo bash setup.sh install

Im getting this response:

Provide the path to the hosts file [./hosts]:

Is this a local file I have to create?

There is no update from you for a period, assuming this is not an issue anymore. Hence we are closing this topic. If need further support, please open a new one. Thanks

Yes, you can keep the default and press Enter.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.