-
-
Notifications
You must be signed in to change notification settings - Fork 819
Open
Description
I was excited to try out this cockpit thing, but:
# wget https://github.com/borgbackup/borg/releases/download/2.0.0b20/borg-linux-glibc235-x86_64-gh -O borg2.0.0b20
# chmod +x borg2.0.0b20
# ./borg2.0.0b20 --cockpit
ImportError: No module named 'textual'
The Borg Cockpit feature has some additional requirements.
Please install them using: pip install 'borgbackup[cockpit]'
# python -c 'import textual'
#I assume the Borg binary doesn't care that I have textual installed because it's using its internal PyInstaller modules instead of what's on my system.
ThomasWaldmann