sonnylazuardi / chat-ai-desktop

Unofficial ChatGPT desktop app for Mac & Windows menubar using Tauri & Rust
https://twitter.com/sonnylazuardi/status/1624281443022286848
MIT License
1.98k stars 190 forks source link

Winget install package #23

Open maphew opened 1 year ago

maphew commented 1 year ago

Thanks for this program! I got so tired of looking for the chatgpt browser tab among the far-too-many I have open.

I created a PR to add chatgpt-desktop to the Winget package respository https://github.com/microsoft/winget-pkgs/pull/92606

There's a process to have this done automatically through CI on each release, but I've never done that; I'm new to the winget packaging universe.

jeffstokes72 commented 1 year ago

Hey, whats the command you'd use now for winget I see the PR you did with MSFT worked (or looked like it did)

jeffstokes72 commented 1 year ago

ah I see it!

winget install chatgpt

winget search chatgpt found it.

maphew commented 1 year ago

There is a name collision with winget chatgpt packages. It looks like it happens because Windows is case insensitive but the Winget package repository is not.

PS> winget search chatgpt
Name    Id               Version Source
----------------------------------------
chatgpt sonnylab.chatgpt 0.2.0   winget
ChatGPT lencx.ChatGPT    0.8.1   winget

The related project issue for tracking their winget release is: https://github.com/lencx/ChatGPT/issues/142

So to be sure you're getting the program you want use the id and not the name:

winget install sonnylab.chatgpt
winget install lencx.ChatGPT

Note: last installed wins. So if you execute both of the above only lencx version will be listed in windows control panel "Add or Remove Programs". I'm not sure happens with winget uninstall chatgpt.