Skip to content
This repository was archived by the owner on Nov 12, 2024. It is now read-only.

sirredbeard/determined-windows-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

Determined AI Windows CLI

This project is primarily a GitHub Actions workflow that:

  • Checks for new releases of Determined AI daily
  • Compares it against the current release of Determined AI Windows CLI here
  • If a newer release of Determined AI is detected, it will:
    • Check out the latest release of Determined AI
    • Build the Determined AI CLI client on Windows as a binary using PyInstaller
    • The binary is built in two ways:
      • As a static binary
      • As a binary with DLLs, which is more performant, packaged as a .zip file
    • Release the Determined AI CLI build for Windows with a release version matching upstream Determined AI
    • Open a PR to submit the updated Determined AI CLI build to winget

Installation

winget

winget install DeterminedAI.CLI

Scoop

scoop install determined

Manual

The following steps will download and install the latest version of the CLI to ~\Determined and add the folder to your path:

$response = Invoke-RestMethod -Uri $latestReleaseUrl
$zipUrl = $response.assets | Where-Object { $_.name -like "*.zip" } | Select-Object -ExpandProperty browser_download_url
Invoke-WebRequest -Uri $zipUrl -OutFile determined-cli.zip
$destDir = Join-Path -Path $HOME -ChildPath "Determined"
New-Item -ItemType Directory -Path $destDir | Out-Null
Expand-Archive -Path $zipFile -DestinationPath $destDir -Force
$env:Path += ";$destDir"
[System.Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User)

Help

Join the Determined AI Commmunity Slack.

License

This project is licensed under the Apache License Version 2.0.

About

Binary build of the Determined AI CLI client for Windows

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published