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.
- 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.
- Python 3.6 or higher | Download python ↗
pip
andtkinter
should be installed with your Python distribution.
- 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
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.
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
pyinstaller --name pypi-gui-package-manager --icon=favicon.ico --onefile main.py
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.
- 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.
- 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!