cati is a package manager for GNU/Linux/UNIX systems. cati is written in python
/\ /\ * * * * * * * * * * * * * *
| |_____| | * Meow.....! I am Cati! *
| -- -- | ....* I can manage your *
| { { * } } | ..../ * Packages! *
| | * *
__________| | * * * * * * * * * * * * * *
/ |
/ |
__/_ __ _________ _ _|
|_| |_| |_| |_|
some features of cati:
- Cati is user friendly, very simple and easy to use
- Cati has all in one. You don't need to have package manager, dependency manager and graphical interface separated
- Cati repositories structure is simple and also smart and powerful
- Cati packages format is
.cati
, also cati supports.deb
and.rpm
packages alongside.cati
packages - Cati has some tools to check your system health and keep that secure
- Cati has a graphical interface(comming soon...)
cati written by parsampsh and contributors
cati licensed under GPL-v3
you can read full documentation of cati in doc folder
if you want to contribute to cati project, read contributing guide
read cati security policy in here.
You can install cati with pip:
sudo pip3 install cati
now you can run it:
cati
# OR
python3 -m cati
before compile and install cati, install the cati dev-dependencies:
python3 (>= 3.6)
pip3
virtualenv
make
to check them you can use the following commands:
python3 --version
python3 -m pip --version
virtualenv --version
make --version
then:
git clone https://github.com/catios/cati.git
cd cati
# install dependencies
virtualenv venv -p python3
source venv/bin/activate
python3 -m pip install -r requirements.txt
# compile and install
make -j4 # use `-jN` option to speed up build process
now, built execultable binary is created in dist/cati
. you can run this by ./dist/cati
.
Also You can install this by running:
sudo make install clean
now you can run cati in termianl:
cati
If you want to remove it, use make uninstall
:
sudo make uninstall
You can run Cati with python interpreter:
git clone https://github.com/catios/cati.git
cd cati
# install dependencies
virtualenv venv -p python3
source venv/bin/activate
python3 -m pip install -r requirements.txt
# run cati (argument `cati` points to `cati/` directory)
python3 cati
# OR
./cati/__main__.py