Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bondeabhijeet/pypi-gui-package-manager
https://github.com/bondeabhijeet/pypi-gui-package-manager
application dark-mode gui-application pip pip3 pypi pypi-packages python python3 tkinter tkinter-python
Last synced: about 22 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/bondeabhijeet/pypi-gui-package-manager
- Owner: bondeabhijeet
- License: mit
- Created: 2022-05-18T15:19:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-23T07:40:38.000Z (3 months ago)
- Last Synced: 2024-11-06T05:07:51.050Z (about 2 months ago)
- Topics: application, dark-mode, gui-application, pip, pip3, pypi, pypi-packages, python, python3, tkinter, tkinter-python
- Language: HTML
- Homepage:
- Size: 14.1 MB
- Stars: 10
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PyPI GUI Package Manager
![pypi-gui](https://github.com/bondeabhijeet/Pypi-GUI-package-manager/blob/main/pypi-GIF.gif)The PyPI GUI Package Manager is a simple and user-friendly graphical interface for managing Python packages from the Python Package Index (PyPI). It provides an intuitive way to search for packages, install, and upgrade them without needing to use the command line.
Features
-
Search Packages: Easily search for Python packages on PyPI using keywords. -
Install Packages: Install packages with a single click. -
Upgrade Packages: Keep your packages up to date by upgrading them with a simple click. -
User-Friendly Interface: Designed for ease of use and a pleasant user experience.
Getting Started
Prerequisites
- Python 3.6 or higher | Download python ↗
-
pip
andtkinter
should be installed with your Python distribution.
Installation
- Clone the repository to your local machine:
git clone https://github.com/bondeabhijeet/Pypi-GUI-package-manager.git
- Navigate to the project directory:
cd Pypi-GUI-package-manager
- Install the required dependencies:
pip install -r requirements.txt
Usage
To launch the PyPI GUI Package Manager, run the following command:
python main.py
The application will open, and you can start searching for, installing, and upgrading Python packages from PyPI with ease.
Building the .exe (--onefile) or an uncompressed folder (--onedir)
Using PyInstaller to create a standalone executable from a Python script
- PyInstaller Installation: Before you can use PyInstaller, you need to have it installed. You can install it using pip:
pip install pyinstaller
- Open the terminal or command prompt, navigate to the directory containing your main.py and favicon.ico files, and then run the PyInstaller command:
for onedir (will generate a folder containing a exe and the unpacked files) refer:
pyinstaller --name pypi-gui-package-manager --icon=favicon.ico --onedir main.py
for onefile:
pyinstaller --name pypi-gui-package-manager --icon=favicon.ico --onefile main.py
After running this command, PyInstaller will generate a standalone executable in the dist directory within your current working directory. The name of the executable will be "pypi-gui-package-manager".
You can then distribute this executable to others who can run it without needing to install Python or any additional dependencies.
Contributing/Issues and Support
Contributions are welcome! If you encounter any issues or have questions about using the PyPI GUI Package Manager, please fork the repository, make your changes, and open a pull request.
Acknowledgments
- The PyPI GUI Package Manager is built using Python and the Tkinter library.
- We thank the Python community and PyPI maintainers for providing a robust platform for package management.
Features to be implemented
-
Uninstall Packages: Remove packages you no longer need with ease. -
Package Details: View detailed information about a package before installation. -
Package Version Selection: Choose the version of a package to install or upgrade. -
Dependency Resolution: Automatically resolves and installs package dependencies. -
Virtual Environments: Option to install packages in a virtual environment for isolation. GUI: Update the GUI to custom tkinter.
Happy coding!