rbreaves / kinto

Mac-style shortcut keys for Linux & Windows.
http://kinto.sh
GNU General Public License v2.0
4.24k stars 212 forks source link

fatal: destination path 'xkeysnail' already exists and is not an empty directory. #863

Closed Rivoks closed 1 month ago

Rivoks commented 2 months ago

Describe the bug Hello, I am trying to install Kinto on Ubuntu 22.04.4 LTS. I get an error during the installation: /bin/bash <( wget -qO- https://raw.githubusercontent.com/rbreaves/kinto/HEAD/install/linux.sh || curl -fsSL https://raw.githubusercontent.com/rbreaves/kinto/HEAD/install/linux.sh ) -r

I get:

Kinto 1.2-13 build 4a3bfe7
Type in Linux like it's a Mac.

Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: pillow in /usr/lib/python3/dist-packages (9.0.1)
Using systemd...
localuser:root being added to access control list
fatal: destination path 'xkeysnail' already exists and is not an empty directory.

Usage:   
  pip3 install [options] <requirement specifier> [package-index-options] ...
  pip3 install [options] -r <requirements file> [package-index-options] ...
  pip3 install [options] [-e] <vcs project url> ...
  pip3 install [options] [-e] <local project path> ...
  pip3 install [options] <archive url/path> ...

no such option: --break-system-packages

Kinto install has failed.

cd into ./xkeysnail
Run 'sudo pip3 install --upgrade .' to debug issue

``

**Expected behavior**
A clear and concise description of what you expected to happen.

**Install Type:** Bare Metal
**Distro:** Ubuntu 22.04.4 LTS
**DE:** Gnome, XFCE, KDE
**Branch:** master
**Commit:** 4a3bfe7

Logs and status if relevant

xkeysnail

sudo systemctl status xkeysnail

Unit xkeysnail.service could not be found.

sudo journalctl --unit=xkeysnail.service -b

sudo journalctl --unit=xkeysnail.service -b

xkb

systemctl --user status keyswap

Unit keyswap.service could not be found.

journalctl --user-unit=keyswap.service -b

-- No entries --



Thank you for your support.
krbaio3 commented 2 months ago

I have successfully installed the program using the old installation method outlined in the project's documentation (https://github.com/rbreaves/kinto?tab=readme-ov-file#old-install-method). I needed to read through setup.py and xkeysnail_service.sh to understand what was causing the failures. My initial step was to install (or reinstall) python3-pip. Next, I went to the xkeysnail repository and installed the dependency with: sudo pip3 install xkeysnail.

My environment uses GNOME, as indicated by the output of "dename.sh", which required an additional dependency: sudo apt install python3-tk. The last dependencies to install were setuptools and wheel via pip3 install setuptools wheel, which I had already installed previously.

The final step was to rerun setup.py, which was successful.

RedBearAK commented 2 months ago

Next, I went to the xkeysnail repository and installed the dependency with: sudo pip3 install xkeysnail.

@krbaio3

That installs the wrong version of xkeysnail. Your Cmd-Tab and other shortcuts that require holding a modifier key down will not work correctly until you reinstall xkeysnail from the folder the Kinto installer clones during install.

cjambrosi commented 2 months ago

@Rivoks Try the following.

This worked for me. This is the first time I've used it, so I believe this is how it should work.

Rivoks commented 1 month ago

@cjambrosi Thank you that works!