Skip to content
ppvnf edited this page Oct 3, 2022 · 10 revisions

WingetUI

First of all... What is WingetUI? WingetUI is an application whose main goal is to create a GUI Store for the most common CLI package managers for Windows, such as Winget and Scoop.

From here, you'll be able to download, install, upgrade and uninstall any software published on Winget or Scoop.

AppGet was supported in release 0.3, but since that project has been discontinued, the support has been removed.

This project has no connection to the official Winget-CLI nor Scoop projects - it's completely unofficial.

Table of contents

  1. WingetUI
  2. Installation
  3. Common Problems
  4. Running and building the source code

WingetUI Installation

It's easy! Download and install the latest version of WingetUI by clicking here!

You can also install WingetUI from winget: winget install wingetui

You can also install the app through Scoop (⚠️might cause issues, please install manually for the moment) since it's part of the Extras bucket (scoop bucket add extras).

To install it that way, execute the following in a CLI: scoop install wingetui



You have arrived at the end of the section. Return to top




Common Problems

Q: I am unable to update some Winget package
A: This is likely a winget-cli issue. Please check if it is possible to install/update the package through PowerShell or cmd using the commands winget upgrade or winget install (for example: winget upgrade --id Microsoft.PowerToys). If this doesn't work you may try to get help at https://github.com/microsoft/winget-pkgs.

Q: Can WingetUI be in my language?
A: Not yet. See more details at https://github.com/martinet101/WingetUI/issues/67

Q: My antivirus is telling me that WingetUI is a virus/My antivirus is uninstalling WingetUI/My browser is blocking WingetUI download
A: Just whitelist WingetUI on the antivirus quarantine box/antivirus settings

Q: Will Chocolatey be supported?
A: Maybe in the future. See more details at https://github.com/martinet101/WingetUI/issues/56

Q: Can I add "msstore" as a source for Winget?
A: This is not possible nor planned for the near future. See more details at https://github.com/martinet101/WingetUI/issues/87



You have arrived at the end of the section. Return to top




Running and building the source code

Cloning the source code is useful to be able to test WingetUI's source code, to debug it, to modify it, and even to build your custom WingetUI version with your custom features or fixes. Though this steps are really intuitive and are the same that most software use, here are the detailed steps required to achieve that.

If you want to clone a specific version, you can download the source code in a zip file from GitHub Releases

Cloning the source code

Clone using git

  1. Open a Command Prompt on a folder
  2. Run the following command to clone the repository and access it:
git clone https://github.com/martinet101/WingetUI && cd wingetui

NOTE: If you want to use PowerShell, the command would be the following:

git clone https://github.com/martinet101/WingetUI; cd wingetui

image

Clone manually

  1. Open a browser and download the source code.
  2. Extract the files into a new folder. To do this, you can use any zip extractor, such as 7-zip, Winzip, etc... Or even SomePythonThings Zip Manager (haha little spam for you)

Installing dependencies

Python 3.10 is required to run WingetUI. Other versions of python are NOT supported. You can download python from here

NOTE: The Microsoft Store Python should work, but you won't be able to build WingetUI.

When Python 3.10 is installed:

  1. Open the folder where the WingetUI source is located. Open the ROOT folder of the repo, NOT the folder where init.py is placed
  2. Make sure you have pip installed. You can see how to install pip here: https://pip.pypa.io/en/stable/installation/
  3. Open a Command Prompt or PowerShell window and run:
pip install -r ./requirements.txt
  1. Wait for it to finish

Running the source code

  1. Open the local repository folder and navigate to a subfolder named wingetui
  2. Open a Command Prompt or Powershell Window on that folder
  3. Run the following command:
python __init__.py

Building WingetUI from source

  1. Open the WingetUI local folder and navigate to the root folder of the repository
  2. Run build.bat to build a standalone executable file. If the process finishes successfully, a file named WingetUI.exe will be generated on the same folder.
  3. Run build_debugging.bat to build a debuggable executable. If the process finishes successfully, a folder named __init__ will be generated on the same folder. Access this folder and run the file named __init__.exe. A console will appear and WingetUI will run in debugging mode



You have arrived at the end of the section. Return to top