Downloads:
10,596
Downloads of v 2.92.0:
104
Last Update:
13 Nov 2024
Package Maintainer(s):
Software Author(s):
- Ledger SAS
Tags:
ledger-live ledger live nano hardware wallet cryptocurrency bip39 cross-platform 64-bit- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Ledger Live
This is not the latest version of Ledger Live available.
- 1
- 2
- 3
2.92.0 | Updated: 13 Nov 2024
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
10,596
Downloads of v 2.92.0:
104
Maintainer(s):
Software Author(s):
- Ledger SAS
Ledger Live 2.92.0
This is not the latest version of Ledger Live available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Ledger SAS. The inclusion of Ledger SAS trademark(s), if any, upon this webpage is solely to identify Ledger SAS goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Ledger Live, run the following command from the command line or from PowerShell:
To upgrade Ledger Live, run the following command from the command line or from PowerShell:
To uninstall Ledger Live, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download ledger-live --internalize --version=2.92.0 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade ledger-live -y --source="'INTERNAL REPO URL'" --version="'2.92.0'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade ledger-live -y --source="'INTERNAL REPO URL'" --version="'2.92.0'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install ledger-live
win_chocolatey:
name: ledger-live
version: '2.92.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'ledger-live' do
action :install
source 'INTERNAL REPO URL'
version '2.92.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller ledger-live
{
Name = "ledger-live"
Version = "2.92.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'ledger-live':
ensure => '2.92.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 14 Nov 2024.
Ledger Live
A multi-crypto wallet app to secure thousands of coins and NFTs. See all supported coins and tokens.
Features
Manage your crypto portfolio
By coupling the Ledger Live wallet app with a Ledger crypto wallet, you can:
- Securely execute transactions by validating them with your Ledger Hardware Wallet
- Manage your portfolio as well as 1000s of other crypto assets
- Track your portfolio
*Buy, sell, swap, stake, and any other crypto transaction services are provided by third-party service providers.
Buy crypto
You can easily buy crypto with a credit/debit card or bank transfer. Choose from a range of service providers – Paypal, Ramp, MoonPay, Sardine – and select the option that works best for you.
Your crypto will land safely in your Ledger crypto wallet.
Swap crypto
Swapping allows you to explore different crypto assets, protect your crypto from volatility, and diversify your portfolio.
You can swap through the Ledger Live app without using fiat currencies.
Stake crypto
Put your crypto to work and get rewards.
You can start staking coins through the Ledger Live crypto wallet app. Track your rewards in the Earn section and discover staking opportunities across chains.
Package Notes
The installer executed by this package was built using Nullsoft Scriptable Install System (NSIS). For advanced setup scenarios, refer to NSIS's command-line interface documentation. Any desired arguments can be appended to (or optionally overriding with the --override-arguments
switch) the package's default install arguments with the --install-arguments
option.
For future upgrade operations, consider opting into Chocolatey's useRememberedArgumentsForUpgrades
feature to avoid having to pass the same arguments with each upgrade:
choco feature enable --name="'useRememberedArgumentsForUpgrades'"
$ErrorActionPreference = 'Stop'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'Ledger Live *'
fileType = 'EXE'
silentArgs = '/allusers /S'
validExitCodes = @(0)
}
[array] $keys = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($keys.Count -eq 1) {
$keys | ForEach-Object {
$packageArgs['file'] = "$(($_.UninstallString.TrimEnd('/allusers')).Replace('"', ''))"
Uninstall-ChocolateyPackage @packageArgs
}
}
elseif ($keys.Count -eq 0) {
Write-Warning "$env:ChocolateyPackageName has already been uninstalled by other means."
}
elseif ($keys.Count -gt 1) {
Write-Warning "$($keys.Count) matches found!"
Write-Warning 'To prevent accidental data loss, no programs will be uninstalled.'
Write-Warning 'Please alert package maintainer the following keys were matched:'
$keys | ForEach-Object { Write-Warning "- $($_.DisplayName)" }
}
Log in or click on link to see number of positives.
- ledger-live.2.92.0.nupkg (200a070f8fed) - ## / 68
- ledger-live-desktop-2.92.0-win-x64.exe (8dd60b23893e) - ## / 68
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Ledger Live 2.92.1 | 47 | Thursday, November 21, 2024 | Approved | |
Ledger Live 2.92.0 | 104 | Wednesday, November 13, 2024 | Approved | |
Ledger Live 2.91.1 | 125 | Monday, November 4, 2024 | Approved | |
Ledger Live 2.91.0 | 87 | Monday, October 28, 2024 | Approved | |
Ledger Live 2.89.1 | 149 | Tuesday, October 15, 2024 | Approved | |
Ledger Live 2.89.0 | 58 | Monday, October 14, 2024 | Approved | |
Ledger Live 2.87.1 | 232 | Thursday, October 3, 2024 | Approved | |
Ledger Live 2.87.0 | 157 | Monday, September 30, 2024 | Approved | |
Ledger Live 2.86.0 | 150 | Thursday, September 19, 2024 | Approved | |
Ledger Live 2.85.1 | 178 | Monday, August 26, 2024 | Approved | |
Ledger Live 2.84.1 | 201 | Friday, July 26, 2024 | Approved | |
Ledger Live 2.84.0 | 25 | Monday, July 22, 2024 | Approved | |
Ledger Live 2.83.0 | 176 | Tuesday, July 2, 2024 | Approved | |
Ledger Live 2.81.2 | 228 | Sunday, June 2, 2024 | Approved | |
Ledger Live (Install) 2.77.2 | 423 | Sunday, March 17, 2024 | Approved | |
Ledger Live (Install) 2.71.1 | 474 | Monday, December 4, 2023 | Approved | |
Ledger Live (Install) 2.71.0 | 249 | Thursday, November 9, 2023 | Approved | |
Ledger Live (Install) 2.69.0 | 292 | Sunday, October 1, 2023 | Approved | |
Ledger Live (Install) 2.68.1 | 176 | Wednesday, September 20, 2023 | Approved | |
Ledger Live (Install) 2.64.2 | 338 | Saturday, July 29, 2023 | Approved | |
Ledger Live (Install) 2.62.2 | 254 | Sunday, July 2, 2023 | Approved | |
Ledger Live (Install) 2.60.0 | 340 | Tuesday, May 30, 2023 | Approved | |
Ledger Live (Install) 2.58.0 | 183 | Friday, May 19, 2023 | Approved | |
Ledger Live (Install) 2.55.0 | 416 | Monday, March 20, 2023 | Approved | |
Ledger Live (Install) 2.51.0 | 514 | Monday, January 2, 2023 | Approved | |
Ledger Live (Install) 2.49.2 | 493 | Friday, November 4, 2022 | Approved | |
Ledger Live (Install) 2.48.0 | 443 | Friday, September 30, 2022 | Approved | |
Ledger Live (Install) 2.44.0 | 451 | Friday, July 22, 2022 | Approved | |
Ledger Live (Install) 2.42.0 | 516 | Monday, June 6, 2022 | Approved | |
Ledger Live (Install) 2.41.3 | 220 | Monday, May 23, 2022 | Approved | |
Ledger Live (Install) 2.40.4 | 283 | Wednesday, April 20, 2022 | Approved | |
Ledger Live (Install) 2.40.2 | 179 | Tuesday, April 5, 2022 | Approved | |
Ledger Live (Install) 2.39.2 | 146 | Wednesday, March 30, 2022 | Approved | |
Ledger Live (Install) 2.36.2 | 301 | Sunday, December 12, 2021 | Approved | |
Ledger Live (Install) 2.35.1 | 157 | Wednesday, November 17, 2021 | Approved | |
Ledger Live (Install) 2.35.0 | 127 | Tuesday, November 16, 2021 | Approved | |
Ledger Live (Install) 2.34.4 | 155 | Wednesday, November 3, 2021 | Approved | |
Ledger Live (Install) 2.34.3 | 161 | Thursday, October 21, 2021 | Approved | |
Ledger Live (Install) 2.34.2 | 121 | Tuesday, October 19, 2021 | Approved | |
Ledger Live (Install) 2.33.1 | 175 | Saturday, September 18, 2021 | Approved | |
Ledger Live (Install) 2.32.2 | 160 | Sunday, August 15, 2021 | Approved | |
Ledger Live (Install) 2.31.1 | 152 | Friday, July 30, 2021 | Approved | |
Ledger Live (Install) 2.30.0 | 121 | Thursday, July 15, 2021 | Approved | |
Ledger Live (Install) 2.29.0 | 148 | Monday, June 14, 2021 | Approved | |
Ledger Live (Install) 2.26.1 | 220 | Thursday, April 29, 2021 | Approved | |
Ledger Live (Install) 2.25.1 | 116 | Wednesday, April 7, 2021 | Approved | |
Ledger Live (Install) 2.24.0 | 152 | Monday, March 29, 2021 | Approved |
Copyright © 2024 Ledger Live Team
This package has no dependencies.
Ground Rules:
- This discussion is only about Ledger Live and the Ledger Live package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Ledger Live, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.