Last active
November 4, 2023 13:38
-
-
Save keyboard-slayer/f2d313f3a41aa1027064ad30d6ce6ee2 to your computer and use it in GitHub Desktop.
Quick cutekit install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
git clone https://github.com/cute-engineering/cutekit.git /tmp/ck | |
python3 -m venv ~/.config/cutekit | |
source ~/.config/cutekit/bin/activate | |
pip3 install /tmp/ck/ | |
if [ ! -d ~/.local/bin ]; then | |
mkdir -p ~/.local/bin | |
fi | |
ln -s ~/.config/cutekit/bin/cutekit ~/.local/bin/cutekit | |
ln -s ~/.config/cutekit/bin/ck ~/.local/bin/ck | |
rm -rf /tmp/ck | |
echo -e "Cutekit is installed !\nThe only thing you have to do is add ~/.local/bin to your PATH variable" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment