-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#126 simplified installation for Windows.
- Loading branch information
1 parent
5dbff49
commit 74d43bb
Showing
6 changed files
with
65 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Binary file not shown.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Aspera CLI installation on Windows | ||
|
||
Edit the installation script: `install.bat` to change the target installation folder if required. | ||
|
||
Then execute it: | ||
|
||
```bat | ||
CD aspera-cli-installer | ||
install.bat | ||
``` | ||
|
||
It will install all the necessary components: | ||
|
||
- Ruby | ||
- Gems | ||
- MS C++ libs | ||
- ascp | ||
|
||
Then add the path to bin to your PATH to find ascli. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@echo off | ||
echo Aspera CLI Installer script for Windows | ||
rem This is the installation folder | ||
SET TARGET_FOLDER=%USERPROFILE%\aspera-cli | ||
echo Installing Aspera CLI in %TARGET_FOLDER% | ||
rubyinstaller-devkit-3.2.2-1-x64.exe /silent /currentuser /noicons /dir=%TARGET_FOLDER% | ||
echo Installing CLI gems | ||
call %TARGET_FOLDER%\bin\gem install --no-document --silent --force --local cli-gems\*.gem | ||
echo Installing MS redis libs | ||
vc_redist.x64.exe /install /passive | ||
echo Installing Aspera SDK | ||
call %TARGET_FOLDER%\bin\ascli conf ascp install --sdk-url=file:///sdk.zip | ||
echo Aspera Cli is installed at: %TARGET_FOLDER%\bin | ||
echo SET PATH=%%PATH%%;C:\Users\Administrator\aspera-cli\bin |