-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with some choco packages eg. Cmder #277
Comments
The short story (as I understand it) is that the original Chocolatey provider was only an open prototype independent from the Chocolatey.exe (the real tool) created a while ago. To alleviate that problem, @jianyunt created the ChocolateyGet provider (or should I say Meta-Provider?) that interface with the 'real' Chocolatey.exe (which is required) instead of using the Chocolatey Prototype. In your case, you could Install ChocolateyGet, and use it to install cmder: PS C:\> install-packageprovider ChocolateyGet -Force
Name Version Source Summary
---- ------- ------ -------
ChocolateyGet 1.0.0.1 PSGallery An PowerShell OneGet provider that disc...
PS C:\> install-package cmder -ProviderName ChocolateyGet
Choco.exe is required to continue
ChocolateyGet is built on Choco.exe. Do you want ChocolateyGet to install Choco.exe from
'https://chocolatey.org/install.ps1' now?
[Y] Yes [N] No [S] Suspend [?] Help (default is "Y"): Y
PS C:\> get-package cmder
Name Version Source ProviderName
---- ------- ------ ------------
cmder 1.3.2 https://www.chocolatey.org ChocolateyGet /cc @ferventcoder who might correct me |
@gaelcolas a couple of small corrections but that is pretty much spot on:
Folks from Microsoft that were originally set up to help moved to other teams. This is the issue to watch to know when the official provider will become available - chocolatey-community/chocolatey-oneget#5 |
@ferventcoder @gaelcolas Thank you guys! I switched to the ChocolateyGet Provider which is not perfect, but works with some tweaks. Unfortunately the ChocolateyGet Provider is not optimized for work behind proxy, but could be fixed easily. I've opened a issue. For now a wrapped installation of Notepad, WinRAR & KeePass using ChocolateyGet within a PowerShell DSC configuration works. Thanks again! |
Chocolatey provider is a prototype provider created by OneGet team and is on path for deprecation. Please work with Chocolatey owners to get official support. |
Hi all,
anyone able to install cmder from choco provider using "Install-Package cmder -force" ?
This one tells me:
Install-Package : Unable to create specified folder '«0»'. «» «Path cannot be the empty string or all whitespace.»
Debug tells me this happens in ProviderService::CreateFolder
I am confused by all the choco providers & prototypes out there, that's why I'm directly raising the question here.
The text was updated successfully, but these errors were encountered: