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
#!/bin/bash | |
# Download MATLAB Package Manager | |
echo "Downloading MATLAB Package Manager..." | |
wget https://www.mathworks.com/mpm/glnxa64/mpm && \ | |
chmod +x mpm | |
# Install MATLAB with toolboxes | |
echo "Installing MATLAB and toolboxes..." | |
./mpm install --release=R2025a --destination=/opt/matlab --products=MATLAB Deep_Learning_Toolbox Statistics_and_Machine_Learning_Toolbox Parallel_Computing_Toolbox |