Install¶
Install Via Pip (Recommended)¶
- Install docker, adb, git, python3 and pip3
(in Ubuntu:
sudo apt install docker.io adb git python3 python3-pip python3-setuptools
) - Run:
pip3 install --user clickable-ut --upgrade
- Add pip scripts to your PATH:
echo 'export PATH="$PATH:$HOME/.local/bin"' >> ~/.bashrc
and open a new terminal for the setting to take effect - Alternatively, to install nightly builds:
pip3 install --user git+https://gitlab.com/clickable/clickable.git@dev
To update Clickable, run the same pip command.
Install Via Python Virtual Environment (Alternative)¶
- Install docker, adb, git, python3 and pip3
(in Ubuntu:
sudo apt install docker.io adb git python3 python3-pip python3-setuptools python3-venv
) - Run:
1 2 3 4 5 6 7 8 | # Create a virtual environment called .venv
python3 -m venv .venv --system-site-packages
# Activate the virtual env
source ./.venv/bin/activate
# Install clickable
pip install clickable-ut --upgrade
# Create clickable app
clickable create --dir ./
|
Install Via PPA (Ubuntu)¶
- Add the PPA to your system:
sudo add-apt-repository ppa:bhdouglass/clickable
- Update your package list:
sudo apt-get update
- Install clickable:
sudo apt-get install clickable
Install Via AUR (Arch Linux)¶
- Using your favorite AUR helper, install the clickable-git package
- Example:
pacaur -S clickable-git
After install¶
- Let Clickable setup docker (asking for root permissions) and bash completion:
clickable setup
- Log out or restart to apply changes if requested