This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

download links for latest CLI tools

hello,

I noticed that CLI tools download links changed after Nordic moved to the new documentation system. it used tio be possible to do:

wget -qO- https://www.nordicsemi.com/eng/nordic/download_resource/51388/29/76130574/94917 | tar -C /usr/local/ -xvf

but this links do not work anymore/ Now I find only this page and cannot know the links to download the latest version of CLI tools.

I need such links to automate the build of a docker for my Continuous Integration porocess

thanks,

yacine

Parents
  • Hey guys,

    yep has found a smart way of doing this. That should work for everyone who needs to set up automation for the moment.
    Going forward, we'll implement static links for the downloads - that can be copied and pasted without Chrome DevTools :)

    Cheers,
    Eivind

  • Hello,

    With the release of nRF Command Line Tools 10.1.1, this URL has broken and I seem unable to get the new one for either version 9.8.1 or version 10.1.1. Has there been any progress in implementing static download links? I am also using nordic tools in dockerfiles and need the ability to download them from the command line.

    Thanks,

    Josh

  • It appears the download method has changed yet again. The following should work for a short while until the next backend update.

    v10.1.1 Linux64:

    wget --post-data 'fileid=D7FC735D0A494EC79F5840EDD05947F8' --header='content-type: application/x-www-form-urlencoded' www.nordicsemi.com/api/sitecore/Products/DownloadPlatform -O nrftools_10.1.1.tar.gz

    v9.8.1 Linux64:

    wget --post-data 'fileid=8F19D314130548209E75EFFADD9348DB' --header='content-type: application/x-www-form-urlencoded' www.nordicsemi.com/api/sitecore/Products/DownloadPlatform -O nrftools_9.8.1.tar.gz

    The only difference between the two is the `fileid` field. If you need a different version, open your browser's developer tools and manually download the file you want. The `fileid` should be listed somewhere among the headers.

    Any update on the static links, ?

Reply
  • It appears the download method has changed yet again. The following should work for a short while until the next backend update.

    v10.1.1 Linux64:

    wget --post-data 'fileid=D7FC735D0A494EC79F5840EDD05947F8' --header='content-type: application/x-www-form-urlencoded' www.nordicsemi.com/api/sitecore/Products/DownloadPlatform -O nrftools_10.1.1.tar.gz

    v9.8.1 Linux64:

    wget --post-data 'fileid=8F19D314130548209E75EFFADD9348DB' --header='content-type: application/x-www-form-urlencoded' www.nordicsemi.com/api/sitecore/Products/DownloadPlatform -O nrftools_9.8.1.tar.gz

    The only difference between the two is the `fileid` field. If you need a different version, open your browser's developer tools and manually download the file you want. The `fileid` should be listed somewhere among the headers.

    Any update on the static links, ?

Children
Related