Skip to content

Commit

Permalink
Updates Windows PowerShell command to download mpm.
Browse files Browse the repository at this point in the history
fixes #108
  • Loading branch information
mw-wtripp authored and Prabhakar Kumar committed Jun 18, 2024
1 parent a990ca8 commit 624c983
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MPM.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ Give the downloaded file executable permissions so that you can run `mpm`.
chmod +x mpm

### Windows
From a Windows PowerShell command prompt, use `wget` to download the latest version of `mpm`.
From a Windows PowerShell prompt, use `Invoke-WebRequest` to download the latest version of `mpm`.

wget https://www.mathworks.com/mpm/win64/mpm -outfile mpm.exe
Invoke-WebRequest -Uri https://www.mathworks.com/mpm/win64/mpm -OutFile mpm.exe

> **Note**: You must run `mpm` from the Windows command prompt as an administrator or you get an error during installation.
> **Note**: You must run `mpm` from the Windows PowerShell prompt as an administrator or you get an error during installation.
### macOS
From a macOS terminal, use `curl` to download the latest version of `mpm` for your macOS architecture.
Expand Down

0 comments on commit 624c983

Please sign in to comment.