Skip to content

Instantly share code, notes, and snippets.

@aleare
aleare / get-matlab.sh
Last active September 30, 2025 12:47
Script to get matlab on google colab
#!/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