Created
November 2, 2020 00:49
-
-
Save saccadic/c19b0713b78dd1a43d55bd796c2f27ff to your computer and use it in GitHub Desktop.
nnablaのダウンロードツール
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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