Skip to content

Commit a12591c

Browse files
Eshan Patelggriffithsuk
Eshan Patel
authored andcommitted
Adds install scripts for easier installation of matlab-batch
1 parent 6102dd9 commit a12591c

File tree

4 files changed

+317
-10
lines changed

4 files changed

+317
-10
lines changed

alternates/non-interactive/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ RUN wget -q https://www.mathworks.com/mpm/glnxa64/mpm \
6262
&& sudo ln -s ${MATLAB_INSTALL_LOCATION}/bin/matlab /usr/local/bin/matlab
6363

6464
# Install matlab-batch to enable the use of MATLAB batch licensing tokens.
65-
RUN wget -q https://ssd.mathworks.com/supportfiles/ci/matlab-batch/v1/glnxa64/matlab-batch \
66-
&& sudo mv matlab-batch /usr/local/bin \
67-
&& sudo chmod +x /usr/local/bin/matlab-batch
65+
RUN wget -q 'https://raw.githubusercontent.com/mathworks-ref-arch/matlab-dockerfile/main/alternates/non-interactive/install/install-matlab-batch.sh' \
66+
&& sudo bash ./install-matlab-batch.sh \
67+
&& rm ./install-matlab-batch.sh
6868

6969
# The following environment variables allow MathWorks to understand how this MathWorks
7070
# product (MATLAB Non-Interactive Dockerfile) is being used. This information helps us make MATLAB even better.

alternates/non-interactive/MATLAB-BATCH.md

+40-7
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,58 @@ MATLAB® batch licensing executable (**matlab-batch**) is a command line tool
55
The MATLAB batch licensing project is still in the pilot phase. To inquire about eligibility requirements, fill out this form on the MathWorks® website: [Batch Licensing Pilot Eligibility](https://www.mathworks.com/support/batch-tokens.html).
66

77

8-
## Download MATLAB Batch Licensing Executable
8+
## Install MATLAB Batch Licensing Executable
99

10-
### Linux
10+
You can install the MATLAB batch licensing executable either by using the installer script or by downloading it and setting it up manually.
1111

12-
From a Linux® terminal, use `wget` to download the latest version of `matlab-batch`.
12+
The installer script sets up the MATLAB Batch Licensing Executable in a default location and adds it to your system path for easy command line access. It also allows you to install the executable in a preferred location.
13+
14+
### Install MATLAB Batch Licensing Executable Using the Installer Script
15+
16+
On macOS, Linux®, and emulated Linux environments (Cygwin™, MinGW®, MSYS2) on Windows®, use the following commands to install `matlab-batch`:
17+
```bash
18+
curl -s 'https://raw.githubusercontent.com/mathworks-ref-arch/matlab-dockerfile/main/alternates/non-interactive/install/install-matlab-batch.sh' -o 'install-matlab-batch.sh'
19+
sudo bash ./install-matlab-batch.sh
20+
```
21+
22+
To install it in a custom location, such as `/opt/my-custom-installs/`, use this command:
23+
```bash
24+
sudo bash ./install-matlab-batch.sh -i '/opt/my-custom-location'
25+
```
26+
> Note: the -i option accepts both absolute and relative paths.
27+
28+
On Windows, use the following commands to install `matlab-batch` in a PowerShell session with elevated permissions (you must start PowerShell with the "Run as Administrator" option):
29+
```powershell
30+
Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/mathworks-ref-arch/matlab-dockerfile/main/alternates/non-interactive/install/install-matlab-batch.ps1' -OutFile 'install-matlab-batch.ps1'
31+
.\install-matlab-batch.ps1
32+
```
33+
34+
To install it in a custom location, such as `C:\Program Files\my-custom-location`, use this command:
35+
```powershell
36+
.\install-matlab-batch.ps1 -InstallLocation 'C:\Program Files\my-custom-location'
37+
```
38+
39+
> Note: the -InstallLocation option accepts both absolute and relative paths.
40+
41+
### Download MATLAB Batch Licensing Executable and Install Manually
42+
43+
#### Linux
44+
45+
From a Linux terminal, use `wget` to download the latest version of `matlab-batch`.
1346

1447
wget https://ssd.mathworks.com/supportfiles/ci/matlab-batch/v1/glnxa64/matlab-batch
1548

16-
Give the downloaded file executable permissions so that you can run `matlab-batch`.
49+
Grant the downloaded file executable permissions so that you can run `matlab-batch`.
1750

1851
chmod +x matlab-batch
1952

20-
### Windows
53+
#### Windows
2154

22-
From a Windows® PowerShell command prompt, use `Invoke-WebRequest` to download the latest version of `matlab-batch`.
55+
From a Windows PowerShell command prompt, use `Invoke-WebRequest` to download the latest version of `matlab-batch`.
2356

2457
Invoke-WebRequest https://ssd.mathworks.com/supportfiles/ci/matlab-batch/v1/win64/matlab-batch.exe -OutFile matlab-batch.exe
2558

26-
### macOS
59+
#### macOS
2760

2861
From a macOS terminal, use `curl` to download the latest version of `matlab-batch` for your macOS architecture.
2962

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
<#
2+
.SYNOPSIS
3+
Installs matlab-batch on a Windows system.
4+
5+
.DESCRIPTION
6+
Downloads the matlab-batch executable.
7+
Creates a directory to place the executable into.
8+
Adds the executable onto the user PATH.
9+
10+
.PARAMETER InstallLocation
11+
Specifies the location where matlab-batch will be downloaded to and installed in.
12+
Defaults to $ProgramFiles\MathWorks.
13+
14+
.PARAMETER Help
15+
Shows a help message for the install script if present.
16+
17+
.EXAMPLE
18+
Install-Batch
19+
Install-Batch -Help
20+
Install-Batch -InstallLocation C:\MyPrograms
21+
22+
.NOTES
23+
Copyright 2024 The MathWorks, Inc.
24+
#>
25+
param (
26+
[string]$InstallLocation='C:\Program Files\MathWorks',
27+
[switch]$Help
28+
)
29+
30+
$DEFAULT_DOWNLOAD_BASE_URL = 'https://ssd.mathworks.com/supportfiles/ci/matlab-batch/v1/win64/matlab-batch.exe'
31+
32+
# Set strict error handling
33+
$ErrorActionPreference = 'Stop'
34+
35+
# Show help
36+
function Show-Help {
37+
Write-Output "Usage: install-matlab-batch.ps1 [parameters]"
38+
Write-Output ""
39+
Write-Output "Options:"
40+
Write-Output " -Help Display this help message."
41+
Write-Output ' -InstallLocation Specify an install location. Defaults to $ProgramFiles\MathWorks.'
42+
Write-Output ""
43+
}
44+
45+
# Function to download the matlab-batch executable binary
46+
function Download {
47+
param (
48+
[string]$Url,
49+
[string]$Filename
50+
)
51+
Invoke-WebRequest -Uri $Url -OutFile $Filename
52+
}
53+
54+
function Install-MatlabBatch {
55+
param (
56+
[string]$InstallDirectory
57+
)
58+
59+
Write-Output 'Starting Install-MatlabBatch...'
60+
61+
# Resolve $InstallDirectory to an absolute path
62+
$InstallDirectory = [System.IO.Path]::GetFullPath([System.IO.Path]::Combine((Get-Location), $InstallDirectory)) + "\matlab-batch"
63+
64+
# Create standard location for install if it does not exist
65+
New-Item -ItemType Directory -Force -Path "$InstallDirectory"
66+
67+
# Define the default download URL
68+
$BaseUrl = $DEFAULT_DOWNLOAD_BASE_URL
69+
try {
70+
Download "$BaseUrl" "$InstallDirectory\matlab-batch.exe"
71+
}
72+
catch {
73+
Write-Host "Failed to download matlab-batch ($($_.Exception.Message))"
74+
exit 1
75+
}
76+
77+
# Add the installation directory to the system PATH
78+
$SystemPath = [System.Environment]::GetEnvironmentVariable('Path', [System.EnvironmentVariableTarget]::Machine)
79+
$PathEntries = $SystemPath.Split(';')
80+
81+
# Check for existing entries for the matlab-batch folder
82+
$ExistingEntries = @($PathEntries | Where-Object { $_ -like "*matlab-batch*" })
83+
84+
if ($ExistingEntries.Count -eq 0) {
85+
# No entry for matlab-batch on PATH
86+
$NewPath = $SystemPath + ';' + $InstallDirectory
87+
[System.Environment]::SetEnvironmentVariable('Path', $NewPath, [System.EnvironmentVariableTarget]::Machine)
88+
Write-Output "Added new installation directory to PATH. You will have to start a fresh PowerShell session to find it on PATH."
89+
} else {
90+
if ($ExistingEntries -contains $InstallDirectory) {
91+
# There are matlab-batch entries on PATH and an entry matches InstallLocation
92+
$FirstEntry = $ExistingEntries[0]
93+
94+
if ($FirstEntry -ne $InstallDirectory) {
95+
# Matching entry is not at the start of the PATH, move it to the first entry
96+
$PathEntries = $PathEntries | Where-Object { $_ -ne $InstallDirectory }
97+
$FirstMatlabBatchIndex = [Array]::IndexOf($PathEntries, $FirstEntry)
98+
$PathEntries = $PathEntries[0..($FirstMatlabBatchIndex-1)] + $InstallDirectory + $PathEntries[$FirstMatlabBatchIndex..($PathEntries.Length-1)]
99+
$NewPath = $PathEntries -join ';'
100+
[System.Environment]::SetEnvironmentVariable('Path', $NewPath, [System.EnvironmentVariableTarget]::Machine)
101+
Write-Output "Moved current installation directory to the first position among matlab-batch entries. You will have to start a fresh PowerShell session to find it on PATH."
102+
} else {
103+
# Matching entry is the first matlab-batch entry on PATH, do nothing
104+
Write-Output "The current installation directory is already the first entry on PATH. No changes made."
105+
}
106+
} else {
107+
# There are matlab-batch entries on PATH and no entry matches InstallLocation
108+
$FirstEntry = $ExistingEntries[0]
109+
$FirstMatlabBatchIndex = [Array]::IndexOf($PathEntries, $FirstEntry)
110+
$PathEntries = $PathEntries[0..($FirstMatlabBatchIndex-1)] + $InstallDirectory + $PathEntries[$FirstMatlabBatchIndex..($PathEntries.Length-1)]
111+
$NewPath = $PathEntries -join ';'
112+
[System.Environment]::SetEnvironmentVariable('Path', $NewPath, [System.EnvironmentVariableTarget]::Machine)
113+
Write-Output "Added new installation directory to the beginning of the matlab-batch entries. You will have to start a fresh PowerShell session to find it on PATH."
114+
}
115+
}
116+
117+
Write-Output "Done with Install-MatlabBatch."
118+
}
119+
120+
try {
121+
# Check if PowerShell is running as Administrator
122+
$currentPrincipal = New-Object Security.Principal.WindowsPrincipal([Security.Principal.WindowsIdentity]::GetCurrent())
123+
$isAdministrator = $currentPrincipal.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)
124+
125+
if ($Help) {
126+
Show-Help
127+
exit 0
128+
}
129+
130+
if ($isAdministrator) {
131+
Install-MatlabBatch -InstallDirectory $InstallLocation
132+
} else {
133+
Write-Host "PowerShell is not running as Administrator. Please run PowerShell as Administrator to proceed with installation."
134+
}
135+
}
136+
catch {
137+
$ScriptPath = $MyInvocation.MyCommand.Path
138+
Write-Output "ERROR - An error occurred while running script: $ScriptPath. Error: $_"
139+
throw
140+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
#!/bin/bash
2+
# Copyright 2024 The MathWorks, Inc.
3+
4+
DEFAULT_DOWNLOAD_BASE_URL='https://ssd.mathworks.com/supportfiles/ci/matlab-batch/v1'
5+
DEFAULT_UNIX_INSTALL_LOCATION='/opt/mathworks'
6+
DEFAULT_WIN_INSTALL_LOCATION='C:\Program Files\MathWorks'
7+
8+
# Exit on any failure, treat unset substitution variables as errors
9+
set -euo pipefail
10+
11+
# Function to display help message
12+
show_help() {
13+
echo "Usage: $0 [options]"
14+
echo ""
15+
echo "Options:"
16+
echo " -h Display this help message."
17+
echo " -i Specify an install location."
18+
}
19+
20+
# Initialize our own variables:
21+
input_value=""
22+
23+
# Process command-line options
24+
25+
OPTSTRING=":hi:"
26+
27+
while getopts "$OPTSTRING" opt; do
28+
case ${opt} in
29+
h)
30+
show_help
31+
exit 0
32+
;;
33+
i)
34+
input_value=$OPTARG
35+
;;
36+
\?)
37+
echo "Invalid option: -${OPTARG}" 1>&2
38+
show_help
39+
exit 1
40+
;;
41+
:)
42+
echo "Option -$OPTARG requires an argument." 1>&2
43+
exit 1
44+
;;
45+
esac
46+
done
47+
48+
# Use the input value if provided
49+
if [ -n "$input_value" ]; then
50+
install_dir=$input_value
51+
else
52+
echo "Using default install location."
53+
fi
54+
55+
# Function to download the matlab-batch executable binary
56+
download() {
57+
url=$1
58+
filename=$2
59+
60+
if [ -x "$(command -v wget)" ]; then
61+
wget -O "$filename" "$url" 2>&1 | ( ! grep -i "failed\|error\|denied" >&2 )
62+
elif [ -x "$(command -v curl)" ] && curl --help | grep -q -- "--retry-all-errors"; then
63+
curl --retry 3 --retry-all-errors -sSfLo "$filename" "$url"
64+
elif [ -x "$(command -v curl)" ]; then
65+
curl --retry 3 -sSfLo "$filename" "$url"
66+
else
67+
echo "Could not find wget or curl command" >&2
68+
return 1
69+
fi
70+
}
71+
72+
# Detect the user environment and prepare accordingly
73+
OS=$(uname)
74+
75+
case $OS in
76+
Linux)
77+
mw_arch='glnxa64'
78+
bin_ext=''
79+
install_dir=${install_dir:-$DEFAULT_UNIX_INSTALL_LOCATION}
80+
;;
81+
Darwin)
82+
arch=$(uname -m)
83+
if echo "$arch" | grep -qE '^(x86_64|amd64)$'; then
84+
mw_arch='maci64'
85+
else
86+
mw_arch='maca64'
87+
fi
88+
bin_ext=''
89+
install_dir=${install_dir:-$DEFAULT_UNIX_INSTALL_LOCATION}
90+
;;
91+
CYGWIN*|MINGW32*|MSYS*|MINGW*)
92+
mw_arch='win64'
93+
bin_ext='.exe'
94+
install_dir=${install_dir:-$DEFAULT_WIN_INSTALL_LOCATION}
95+
;;
96+
*)
97+
echo "'$OS' operating system not supported"
98+
exit 1
99+
;;
100+
esac
101+
102+
# Create standard location for install if it does not exist
103+
mkdir -p "$install_dir"
104+
105+
# Download the matlab-batch executable to a standard location
106+
base_url=${DEFAULT_DOWNLOAD_BASE_URL}
107+
108+
{
109+
output=$(download "$base_url/$mw_arch/matlab-batch$bin_ext" "$install_dir/matlab-batch$bin_ext" 2>&1);
110+
} || {
111+
msg=$(echo "$output" | head -1 | sed -e 's/^[[:space:]]*//')
112+
echo "Failed to download matlab-batch to the specified location ($msg)."
113+
exit 1;
114+
}
115+
116+
# Allow executable permissions for matlab-batch
117+
chmod a+x "$install_dir/matlab-batch$bin_ext"
118+
119+
# Place matlab-batch on the PATH if it is possible in the current environment
120+
if [ "$OS" = "Linux" ] || [ "$OS" = "Darwin" ]; then
121+
# Convert install_dir to an absolute path if it is not already
122+
install_dir=$(cd "$install_dir" && pwd)
123+
124+
# Check if install_dir is not /usr/local/bin and proceed with creating a symlink if true
125+
if [ "$install_dir" != "/usr/local/bin" ] && ln -fs "$install_dir/matlab-batch" /usr/local/bin/matlab-batch; then
126+
echo "symlink created in /usr/local/bin."
127+
elif [ "$install_dir" = "/usr/local/bin" ]; then
128+
echo "matlab-batch is installed in /usr/local/bin, no need to create a symbolic link." >&2
129+
else
130+
echo "Unable to create symbolic links for matlab-batch in /usr/local/bin. To run matlab-batch, '$install_dir/matlab-batch' must be on the system path." >&2
131+
fi
132+
fi
133+
134+
echo "matlab-batch installed successfully."

0 commit comments

Comments
 (0)