Using CaringCaribou Without Root
Here’s your five second tip of the day: Need to install CaringCaribou on a system you don’t have root on? (for example: a CTF VM)
git clone https://github.com/CaringCaribou/caringcaribou.git
cd caringcaribou
python3 setup.py install --user
Appending a setup.py script with the --user
suffix will cause the packages to all be installed in a local user-writable directory, bypassing the need for root on the local system.
Enjoy!