Pck3r
Pck3r is an easy command-line tool for Linux beginners. It is written in Python and makes package management and system tasks simple on Ubuntu 24.04. It uses the apt package manager.
Pck3r is created by AMZY31(Amin Azimi) and is licensed under GPL3. We welcome contributions—send pull requests on GitHub: https://github.com/amzy31/pck3r. New features will be added soon!
Logo
尸⼕长㇌尺
Overview
Hello Linux users! Pck3r makes managing packages on Ubuntu 24.04 easy and fun. Forget hard apt commands—use simple ones instead. Good for new users and experts!
Commands
Install Command
Install packages or tools. Pck3r has special ways to install popular tools and uses apt for others.
Built-in packages (special install methods):
- nodejs (Node.js)
- ohmyzsh (Oh My Zsh)
- firefox (Mozilla Firefox)
- google-chrome (Google Chrome)
- steam (Steam gaming platform)
- discord (Discord chat app)
- vscode (Visual Studio Code)
- skype (Skype)
- zoom (Zoom video conferencing)
- vlc (VLC media player)
- virtualbox (VirtualBox virtualization)
- wine (Wine for running Windows apps)
pck3r install <package>
Examples:
pck3r install nodejs
pck3r install google-chrome
-
pck3r install <any_other_package>
(uses apt)
Clear Command
Clear your terminal screen:
pck3r clear
System Commands
Manage your system:
- Update package lists:
pck3r sys update
- Upgrade installed packages:
pck3r sys upgrade
- Full upgrade (update and upgrade):
pck3r sys updgr
Package Commands
List built-in Pck3r packages or search for apt packages:
- List built-in packages:
pck3r pkg
- Check if a package is built-in or search for apt packages:
pck3r pkg <package_name>
If <package_name>
is built-in, it will tell you. Else, it searches apt packages in the repos.
Version
Check Pck3r version:
pck3r version
Installation
To install Pck3r for all users:
Make sure Python 3 is on your system (it comes with most Linux distros)
Clone the repo:
git clone https://github.com/amzy31/pck3r
- Go to the folder:
cd pck3r
- Install for all users:
make install
Or run it directly:
python3 main.py <command>
Update
To update Pck3r to the latest version:
git pull origin master
Then reinstall:
make install
Or use the built-in update command:
pck3r update
Top comments (0)