Skip to content

Instantly share code, notes, and snippets.

@saccadic
Created November 2, 2020 00:49
Show Gist options
  • Save saccadic/c19b0713b78dd1a43d55bd796c2f27ff to your computer and use it in GitHub Desktop.
Save saccadic/c19b0713b78dd1a43d55bd796c2f27ff to your computer and use it in GitHub Desktop.
nnablaのダウンロードツール
SET nnabla_version=1.12.0
powershell wget https://github.com/sony/nnabla/archive/v%nnabla_version%.zip -o nnable.zip
powershell wget https://github.com/sony/nnabla-ext-cuda/archive/v%nnabla_version%.zip -o nnable-ext-cuda.zip
powershell Expand-Archive -Path nnable.zip -Force -DestinationPath ./nnable
powershell Move-Item ./nnable/nnabla-%nnabla_version%/* ./nnable/
powershell Remove-Item -Path ./nnable/nnabla-%nnabla_version%
powershell Expand-Archive -Path nnable-ext-cuda.zip -Force -DestinationPath ./nnable-ext-cuda
powershell Move-Item ./nnable-ext-cuda/nnabla-ext-cuda-%nnabla_version%/* ./nnable-ext-cuda/
powershell Remove-Item -Path ./nnable-ext-cuda/nnabla-ext-cuda-%nnabla_version%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment