Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debian Install Failure #1343

Open
1 task done
FugueSoft opened this issue Feb 6, 2025 · 2 comments · Fixed by rnevius/kickstart.nvim#1 · May be fixed by #1344
Open
1 task done

Debian Install Failure #1343

FugueSoft opened this issue Feb 6, 2025 · 2 comments · Fixed by rnevius/kickstart.nvim#1 · May be fixed by #1344

Comments

@FugueSoft
Copy link

Before Reporting an Issue

  • I have read the kickstart.nvim README.md.

  • I have read the appropriate plugin's documentation.

  • I have searched that this issue has not been reported before.

  • By checking this, I confirm that the above steps are completed. I understand leaving this unchecked will result in this report being closed immediately.

Describe the bug

The Install recipe for Debian fails, it appears there is an issue with gzip

To Reproduce

Issue

Trying to install kickstart.nvim per the instructions here
Full Instructions:

sudo apt update
sudo apt install make gcc ripgrep unzip git xclip curl

# Now we install nvim
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz
sudo rm -rf /opt/nvim-linux64
sudo mkdir -p /opt/nvim-linux64
sudo chmod a+rX /opt/nvim-linux64
sudo tar -C /opt -xzf nvim-linux64.tar.gz

# make it available in /usr/local/bin, distro installs to /usr/bin
sudo ln -sf /opt/nvim-linux64/bin/nvim /usr/local/bin/

I receive this error back:

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now

Full output:

Obj:1 http://deb.debian.org/debian bookworm InRelease
Obj:2 http://deb.debian.org/debian bookworm-updates InRelease
Obj:3 http://deb.debian.org/debian bookworm-backports InRelease
Obj:4 http://security.debian.org/debian-security bookworm-security InRelease
Leyendo lista de paquetes... Hecho
Creando árbol de dependencias... Hecho
Leyendo la información de estado... Hecho
Todos los paquetes están actualizados.
Leyendo lista de paquetes... Hecho
Creando árbol de dependencias... Hecho
Leyendo la información de estado... Hecho
make ya está en su versión más reciente (4.3-4.1).
gcc ya está en su versión más reciente (4:12.2.0-3).
ripgrep ya está en su versión más reciente (13.0.0-4+b2).
unzip ya está en su versión más reciente (6.0-28).
git ya está en su versión más reciente (1:2.39.5-0+deb12u2).
xclip ya está en su versión más reciente (0.13-2).
curl ya está en su versión más reciente (7.88.1-10+deb12u8).
0 actualizados, 0 nuevos se instalarán, 0 para eliminar y 0 no actualizados.
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100     9  100     9    0     0     30      0 --:--:-- --:--:-- --:--:--    30

Desktop

  • OS: Debian 12.9 (bookworm)
  • Terminal: kitty
  • Shell: fish (attempted in bash as well)

Neovim Version

NVIM v0.7.2
Build type: Release
LuaJIT 2.1.0-beta3
Compilado por [email protected]

Features: +acl +iconv +tui
See ":help feature-compile"

     archivo "vimrc" del sistema: "$VIM/sysinit.vim"
            predefinido para $VIM: "/usr/share/nvim"

Run :checkhealth for more info
@rnevius
Copy link

rnevius commented Feb 6, 2025

nvim-linux64.tar.gz is not a valid archive. If I were you, I would just follow the Neovim installation instructions, and then proceed to the Kickstart installation.

@FugueSoft
Copy link
Author

nvim-linux64.tar.gz is not a valid archive. If I were you, I would just follow the Neovim installation instructions, and then proceed to the Kickstart installation.

Ah thank you! So you'd suggest a pre-built? I've installed the latest Debian version through through apt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment