如何修复 error: cannot find the python fuse module; please install it

问题:

运行 bup fuse 时,你看到此错误消息

python_fuse_error.txt
error: cannot find the python "fuse" module; please install it

解决方案

在 Ubuntu 或其他基于 debian 的系统上,只需使用 apt 安装包:

install_python3_fuse_apt.sh
sudo apt -y install python3-fuse

否则,使用 pip 安装:

install_fuse_python_pip.sh
pip install -U fuse-python

Check out similar posts by category: Python