@@ -31,15 +31,15 @@ Table of contents
3131### Linux
3232
3333``` shell
34- curl -LO https://github.com/SwissDataScienceCenter/coman/releases/latest/download/coman-Linux- x86_64-musl.tar.gz
34+ curl -LO https://github.com/SwissDataScienceCenter/coman/releases/latest/download/coman-x86_64-unknown-linux -musl.tar.gz
3535sudo tar -xzf coman-Linux-x86_64-musl.tar.gz -C /usr/local/bin/
3636sudo chmod +x /usr/local/bin/coman
3737```
3838
3939### Macos
4040
4141``` shell
42- curl -LO https://github.com/SwissDataScienceCenter/coman/releases/latest/download/coman-Darwin- x86_64.tar.gz
42+ curl -LO https://github.com/SwissDataScienceCenter/coman/releases/latest/download/coman-x86_64-apple-darwin .tar.gz
4343sudo tar -xzf coman-Darwin-x86_64.tar.gz -C /usr/local/bin/
4444sudo chmod +x /usr/local/bin/coman
4545```
@@ -49,10 +49,10 @@ Run as Admin:
4949
5050``` powershell
5151# Download the ZIP file
52- Invoke-WebRequest -Uri "https://github.com/SwissDataScienceCenter/coman/releases/latest/download/coman-Windows-aarch64 .zip" -OutFile "coman-Windows-aarch64 .zip"
52+ Invoke-WebRequest -Uri "https://github.com/SwissDataScienceCenter/coman/releases/latest/download/coman-x86_64-pc-windows-msvc .zip" -OutFile "coman-Windows-x86_64 .zip"
5353
5454# Extract the ZIP file
55- Expand-Archive -Path "coman-Windows-aarch64 .zip" -DestinationPath ".\coman_temp" -Force
55+ Expand-Archive -Path "coman-Windows-x86_64 .zip" -DestinationPath ".\coman_temp" -Force
5656
5757# Move the binary to C:\Program Files\coman
5858New-Item -ItemType Directory -Path "C:\Program Files\coman" -Force
@@ -62,7 +62,7 @@ Move-Item -Path ".\coman_temp\coman.exe" -Destination "C:\Program Files\coman\co
6262[Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";C:\Program Files\coman", "Machine")
6363
6464# Clean up temporary files
65- Remove-Item -Path "coman-Windows-aarch64 .zip" -Force
65+ Remove-Item -Path "coman-Windows-x86_64 .zip" -Force
6666Remove-Item -Path ".\coman_temp" -Recurse -Force
6767```
6868
0 commit comments