Installing sample code (using UBUNU) on UDOO KEY!

Discussion in 'UDOO KEY' started by Mike Leishman, Oct 12, 2023.

  1. Mike Leishman

    Mike Leishman New Member

    Joined:
    Aug 24, 2017
    Messages:
    7
    Likes Received:
    2
    I am trying to install the sample code on my UDOO X86 running UBUNTU 18.04.1.
    When I get to here "git clone --recursive https://github.com/espressif/esp-idf.git -b 4.4.1", I get "fatal: the remote branch 4.4.1 not found in upstream origin"
    I can't find any information that can help me go past this command. Anybody like to provide a way forward?
     
  2. Mike Leishman

    Mike Leishman New Member

    Joined:
    Aug 24, 2017
    Messages:
    7
    Likes Received:
    2
    It would appear that there might be a v missing in the command eg v4.4.1
    I was able to get a little way forward by using these commands found here: https://github.com/espressif/esp-idf/releases/tag/v5.1.1

    git clone -b v5.1.1 --recursive https://github.com/espressif/esp-idf.git esp-idf-v5.1.1
    cd esp-idf-v5.1.1/
     
  3. Mike Leishman

    Mike Leishman New Member

    Joined:
    Aug 24, 2017
    Messages:
    7
    Likes Received:
    2
    It now appears that, for UBUNTU, you have to install python3-venv but you also have to create a virtual envirnment

    sudo apt-get install python3-pip
    pip3 install virtualenv
    sudo -i apt-get install python3-venv
     

Share This Page