williamboman / nvim-lsp-installer

Further development has moved to https://github.com/williamboman/mason.nvim!
https://github.com/williamboman/mason.nvim
Apache License 2.0
2k stars 123 forks source link

'Unable to find executable' after latest update. #646

Closed sdemura closed 2 years ago

sdemura commented 2 years ago

Problem description

After updating my config to the new recommended method (not using on_server_ready, I'm having issues with any language server installed by nvim-lsp-installer.

image image
❯ ls
gopls                           nvim-lsp-installer-receipt.json
  ~/.local/share/nvim/lsp_servers/gopls ❯  

This is not specific to just gopls, but any language server installed.

Relevant nvim config:

    use({
        "williamboman/nvim-lsp-installer",
        config = function()
            require("nvim-lsp-installer").setup({
                automatic_installation = true,
            })
        end,
    })
    use({
        "neovim/nvim-lspconfig",
        config = function()
            -- after the language server attaches to the current buffer
            local on_attach = function(client, bufnr)
                -- Mappings.
                -- See `:help vim.diagnostic.*` for documentation on any of the below functions
                local opts = { noremap = true, silent = false }
                vim.api.nvim_set_keymap("n", "<space>e", "<cmd>lua vim.diagnostic.open_float({focus=false})<CR>", opts)
                vim.api.nvim_set_keymap("n", "<space>q", "<cmd>lua vim.diagnostic.setloclist()<CR>", opts)

                -- Enable completion triggered by <c-x><c-o>
                vim.api.nvim_buf_set_option(bufnr, "omnifunc", "v:lua.vim.lsp.omnifunc")

                -- Mappings.
                -- See `:help vim.lsp.*` for documentation on any of the below functions
                vim.api.nvim_buf_set_keymap(bufnr, "n", "gD", "<cmd>lua vim.lsp.buf.declaration()<CR>", opts)
                vim.api.nvim_buf_set_keymap(bufnr, "n", "gd", "<cmd>lua vim.lsp.buf.definition()<CR>", opts)
                vim.api.nvim_buf_set_keymap(bufnr, "n", "K", "<cmd>lua vim.lsp.buf.hover()<CR>", opts)
                vim.api.nvim_buf_set_keymap(bufnr, "n", "gi", "<cmd>lua vim.lsp.buf.implementation()<CR>", opts)
                vim.api.nvim_buf_set_keymap(bufnr, "n", "<C-k>", "<cmd>lua vim.lsp.buf.signature_help()<CR>", opts)
                vim.api.nvim_buf_set_keymap(
                    bufnr,
                    "n",
                    "<space>wa",
                    "<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>",
                    opts
                )
                vim.api.nvim_buf_set_keymap(
                    bufnr,
                    "n",
                    "<space>wr",
                    "<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>",
                    opts
                )
                vim.api.nvim_buf_set_keymap(
                    bufnr,
                    "n",
                    "<space>wl",
                    "<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>",
                    opts
                )
                vim.api.nvim_buf_set_keymap(bufnr, "n", "<space>D", "<cmd>lua vim.lsp.buf.type_definition()<CR>", opts)
                vim.api.nvim_buf_set_keymap(bufnr, "n", "<space>rn", "<cmd>lua vim.lsp.buf.rename()<CR>", opts)
                vim.api.nvim_buf_set_keymap(bufnr, "n", "<space>ca", "<cmd>lua vim.lsp.buf.code_action()<CR>", opts)
                vim.api.nvim_buf_set_keymap(bufnr, "n", "gr", "<cmd>lua vim.lsp.buf.references()<CR>", opts)
                vim.api.nvim_buf_set_keymap(bufnr, "n", "<space>f", "<cmd>lua vim.lsp.buf.formatting()<CR>", opts)

                -- aerials.nvim
                local aerial = require("aerial")
                aerial.setup({
                    show_guides = true,
                })
                aerial.on_attach(client, bufnr)
            end

            -- Add additional capabilities supported by nvim-cmp
            local capabilities = vim.lsp.protocol.make_client_capabilities()
            capabilities = require("cmp_nvim_lsp").update_capabilities(capabilities)

            local lspconfig = require("lspconfig")
            lspconfig.gopls.setup({ on_attach = on_attach, capabilities = capabilities })
            lspconfig.pyright.setup({ on_attach = on_attach, capabilities = capabilities })
            lspconfig.sumneko_lua.setup({
                on_attach = on_attach,
                capabilities = capabilities,
                settings = {
                    Lua = {
                        version = "LuaJIT",
                        diagnostics = {
                            globals = { "vim", "describe", "it", "before_each", "after_each", "pending" },
                        },
                    },
                },
            })
            lspconfig.yamlls.setup({
                on_attach = on_attach,
                capabilities = capabilities,
                settings = {
                    yaml = {
                        schemas = { ["https://json.schemastore.org/taskfile.json"] = "Taskfile.yaml" },
                    },
                },
            })
        end,
    })

Neovim version (>= 0.6)

NVIM v0.7.0
Build type: Release
LuaJIT 2.1.0-beta3
Compiled by brew@HMBRW-A-001-M1-004.local

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

   system vimrc file: "$VIM/sysinit.vim"
  fall-back for $VIM: "/opt/homebrew/Cellar/neovim/0.7.0/share/nvim"

Run :checkhealth for more info

Operating system/version

Darwin seans-mbp.lan 21.4.0 Darwin Kernel Version 21.4.0: Fri Mar 18 00:46:32 PDT 2022; root:xnu-8020.101.4~15/RELEASE_ARM64_T6000 arm64

I've recently downloaded the latest plugin version of both nvim-lsp-installer and nvim-lspconfig

Affected language servers

all

Actual behavior

nvim-lsp-installer reports language server installer, but complains it cannot find the executable when attaching to a buffer.

Expected behavior

the language server starts correctly.

LspInstallInfo output

nvim-lsp-installer
                                                                   press ? for help
                                                  https://github.com/williamboman/nvim-lsp-installer

  Installed servers (1) 
    ◍ gopls (go)

  Available servers (114) 
    ◍ angularls 
    ◍ ansiblels 
    ◍ arduino_language_server 
    ◍ asm_lsp (assembly-gas, assembly-nasm, assembly-go)
    ◍ awk_ls 
    ◍ bashls 
    ◍ beancount 
    ◍ bicep 
    ◍ bsl_ls (onescript)
    ◍ ccls (c, c++, objective-c)
    ◍ clangd (c, c++)
    ◍ clarity_lsp 
    ◍ clojure_lsp 
    ◍ cmake 
    ◍ codeqlls 
    ◍ crystalline 
    ◍ csharp_ls (c#)
    ◍ cssls 
    ◍ cssmodules_ls 
    ◍ cucumber_language_server 
    ◍ dartls 
    ◍ denols 
    ◍ dhall_lsp_server 
    ◍ diagnosticls 
    ◍ dockerls 
    ◍ dotls 
    ◍ efm 
    ◍ elixirls 
    ◍ elmls 
    ◍ ember 
    ◍ emmet_ls 
    ◍ erlangls 
    ◍ esbonio (sphinx)
    ◍ eslint (javascript, typescript)
    ◍ flux_lsp 
    ◍ foam_ls (OpenFOAM)
    ◍ fortls (fortran)
    ◍ fsautocomplete (f#)
    ◍ golangci_lint_ls (go)
    ◍ grammarly 
    ◍ graphql 
    ◍ groovyls 
    ◍ haxe_language_server 
    ◍ hls (haskell)
    ◍ html 
    ◍ intelephense (php)
    ◍ jdtls (java)
    ◍ jedi_language_server (python)
    ◍ jsonls 
    ◍ jsonnet_ls 
    ◍ julials 
    ◍ kotlin_language_server 
    ◍ lelwel_ls 
    ◍ lemminx (xml)
    ◍ ltex (latex)
    ◍ mm0_ls (metamath-zero)
    ◍ nickel_ls 
    ◍ nimls 
    ◍ ocamlls deprecated 
    ◍ ocamllsp 
    ◍ omnisharp (c#)
    ◍ opencl_ls 
    ◍ perlnavigator 
    ◍ phpactor 
    ◍ powershell_es 
    ◍ prismals 
    ◍ prosemd_lsp (markdown)
    ◍ psalm (php)
    ◍ puppet 
    ◍ purescriptls 
    ◍ pylsp (python)
    ◍ pyright (python)
    ◍ quick_lint_js (javascript)
    ◍ r_language_server (R)
    ◍ reason_ls 
    ◍ remark_ls (markdown)
    ◍ rescriptls 
    ◍ rnix 
    ◍ rome (typescript, javascript)
    ◍ rust_analyzer 
    ◍ salt_ls (sls)
    ◍ scry (crystal)
    ◍ serve_d (d)
    ◍ slint_lsp 
    ◍ solang (solidity)
    ◍ solargraph (ruby)
    ◍ solc (solidity)
    ◍ solidity_ls 
    ◍ sorbet (ruby)
    ◍ sourcekit (swift)
    ◍ sourcery (python)
    ◍ spectral (openapi, asyncapi)
    ◍ sqlls 
    ◍ sqls 
    ◍ stylelint_lsp 
    ◍ sumneko_lua (lua)
    ◍ svelte 
    ◍ svls (systemverilog)
    ◍ tailwindcss 
    ◍ taplo (toml)
    ◍ terraformls 
    ◍ texlab (latex)
    ◍ tflint (terraform)
    ◍ theme_check (liquid)
    ◍ tsserver (typescript, javascript)
    ◍ vala_ls 
    ◍ verible (systemverilog, verilog)
    ◍ vimls 
    ◍ volar (vue)
    ◍ vuels 
    ◍ yamlls 
    ◍ zeta_note (markdown)
    ◍ zk (markdown)
    ◍ zls (zig)

### Installation log

```shell
[INFO  Fri Mar 11 21:55:29 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="pyright", requested_version=""
[ERROR Fri Mar 11 21:55:29 2022] ...art/nvim-lsp-installer/lua/nvim-lsp-installer/server.lua:242: Server installation failed, server_name="pyright", error="...art/nvim-lsp-installer/lua/nvim-lsp-installer/server.lua:222: Installation failed."
[INFO  Fri Mar 11 21:55:29 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="pyright", success=false
[INFO  Fri Mar 11 21:57:25 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="pyright", requested_version=""
[INFO  Fri Mar 11 21:57:27 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="pyright", success=true
[INFO  Fri Mar 11 22:10:38 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="gopls", requested_version=""
[INFO  Fri Mar 11 22:10:48 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="gopls", success=true
[INFO  Fri Mar 11 22:10:50 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="golangci_lint_ls", requested_version=""
[INFO  Fri Mar 11 22:11:15 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="golangci_lint_ls", success=true
[ERROR Fri Mar 11 22:15:37 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Fri Mar 11 22:15:37 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Fri Mar 11 22:15:37 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Fri Mar 11 22:15:37 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="wget", err="ENOENT: no such file or directory"
[ERROR Fri Mar 11 22:16:31 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Fri Mar 11 22:16:31 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Fri Mar 11 22:16:31 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Fri Mar 11 22:16:46 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Fri Mar 11 22:16:46 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Fri Mar 11 22:16:46 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[INFO  Fri Mar 11 22:30:19 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="sumneko_lua", requested_version=""
[ERROR Fri Mar 11 22:30:19 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Mar 11 22:30:21 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="sumneko_lua", success=true
[ERROR Sat Mar 12 20:56:29 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Sat Mar 12 20:56:29 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Sat Mar 12 20:56:29 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Sat Mar 12 20:58:22 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Sat Mar 12 20:58:22 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Sat Mar 12 20:58:22 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Sat Mar 12 20:58:45 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Sat Mar 12 20:58:45 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Sat Mar 12 20:58:45 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[INFO  Sun Mar 13 15:44:31 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="bashls", requested_version=""
[ERROR Sun Mar 13 15:44:31 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Sun Mar 13 15:44:35 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="bashls", success=true
[INFO  Sun Mar 13 15:44:37 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="pyright", requested_version=""
[INFO  Sun Mar 13 15:44:38 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="pyright", success=true
[ERROR Tue Mar 15 22:01:30 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Tue Mar 15 22:01:30 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Tue Mar 15 22:01:30 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Mon Mar 21 11:29:28 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Mon Mar 21 11:29:32 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="pyright", requested_version=""
[INFO  Mon Mar 21 11:29:34 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="pyright", success=true
[INFO  Mon Mar 21 11:55:54 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="gopls", requested_version=""
[ERROR Mon Mar 21 11:55:54 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Mon Mar 21 11:56:00 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="gopls", success=true
[INFO  Wed Mar 23 10:04:22 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="dockerls", requested_version=""
[ERROR Wed Mar 23 10:04:22 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Wed Mar 23 10:04:24 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="dockerls", success=true
[ERROR Wed Mar 23 21:18:16 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Wed Mar 23 21:18:16 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Wed Mar 23 21:18:16 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Thu Mar 24 22:02:38 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Thu Mar 24 22:02:38 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Thu Mar 24 22:02:38 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Sat Mar 26 15:44:47 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Sat Mar 26 15:44:47 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Sat Mar 26 15:44:47 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Wed Mar 30 22:23:43 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Wed Mar 30 22:23:43 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Wed Mar 30 22:23:43 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Thu Mar 31 15:48:53 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Thu Mar 31 15:48:53 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Thu Mar 31 15:48:53 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[INFO  Sat Apr  2 09:08:50 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="yamlls", requested_version=""
[ERROR Sat Apr  2 09:08:50 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Sat Apr  2 09:08:52 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="yamlls", success=true
[INFO  Sat Apr  2 09:08:55 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="pyright", requested_version=""
[INFO  Sat Apr  2 09:08:56 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="pyright", success=true
[ERROR Tue Apr  5 09:56:09 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Tue Apr  5 09:56:12 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="gopls", requested_version=""
[INFO  Tue Apr  5 09:56:12 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="pyright", requested_version=""
[INFO  Tue Apr  5 09:56:15 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="pyright", success=true
[INFO  Tue Apr  5 09:56:16 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="gopls", success=true
[ERROR Tue Apr  5 16:38:20 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Tue Apr  5 16:38:20 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Tue Apr  5 16:38:20 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Tue Apr  5 21:23:06 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[ERROR Sat Apr  9 22:06:35 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Sat Apr  9 22:06:38 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="gopls", requested_version=""
[INFO  Sat Apr  9 22:06:39 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:668: Starting install server_name="sumneko_lua", requested_version=""
[ERROR Sat Apr  9 22:06:39 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Sat Apr  9 22:06:40 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="gopls", success=true
[INFO  Sat Apr  9 22:06:40 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:687: Installation completed server_name="sumneko_lua", success=true
[ERROR Mon Apr 11 07:42:13 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Mon Apr 11 07:42:13 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Mon Apr 11 07:42:13 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Tue Apr 12 21:26:07 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Tue Apr 12 21:26:07 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Tue Apr 12 21:26:07 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Wed Apr 13 22:36:33 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Wed Apr 13 22:36:33 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Wed Apr 13 22:36:33 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Wed Apr 13 22:37:47 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Wed Apr 13 22:37:47 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Wed Apr 13 22:37:47 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Fri Apr 15 12:22:13 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Fri Apr 15 12:22:13 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Fri Apr 15 12:22:13 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Fri Apr 15 22:10:26 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Fri Apr 15 22:10:26 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Fri Apr 15 22:10:26 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Sat Apr 16 18:41:54 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Sat Apr 16 18:41:57 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="gopls", requested_version=""
[INFO  Sat Apr 16 18:41:58 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="sumneko_lua", requested_version=""
[ERROR Sat Apr 16 18:41:58 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Sat Apr 16 18:41:59 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="sumneko_lua", success=true
[INFO  Sat Apr 16 18:42:01 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="pyright", requested_version=""
[INFO  Sat Apr 16 18:42:01 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="gopls", success=true
[INFO  Sat Apr 16 18:42:02 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="pyright", success=true
[ERROR Sun Apr 17 22:15:02 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Sun Apr 17 22:15:02 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Sun Apr 17 22:15:02 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Mon Apr 18 21:39:49 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Mon Apr 18 21:39:52 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="bashls", requested_version=""
[INFO  Mon Apr 18 21:39:53 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="sumneko_lua", requested_version=""
[ERROR Mon Apr 18 21:39:53 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Mon Apr 18 21:39:54 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="bashls", success=true
[INFO  Mon Apr 18 21:39:55 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="sumneko_lua", success=true
[ERROR Thu Apr 21 15:32:20 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="cargo", err="ENOENT: no such file or directory"
[ERROR Thu Apr 21 15:32:20 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Thu Apr 21 15:32:20 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Thu Apr 21 15:32:20 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Thu Apr 21 21:01:45 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="cargo", err="ENOENT: no such file or directory"
[ERROR Thu Apr 21 21:01:45 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Thu Apr 21 21:01:45 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Thu Apr 21 21:01:45 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Sat Apr 23 12:22:34 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="cargo", err="ENOENT: no such file or directory"
[ERROR Sat Apr 23 12:22:34 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Sat Apr 23 12:22:34 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Sat Apr 23 12:22:34 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 07:21:23 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 07:32:31 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="pyright", requested_version=""
[ERROR Fri Apr 29 07:32:31 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 07:32:33 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="pyright", success=true
[ERROR Fri Apr 29 07:33:26 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 07:33:30 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="yamlls", requested_version=""
[INFO  Fri Apr 29 07:33:31 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="yamlls", success=true
[ERROR Fri Apr 29 07:42:39 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 07:42:42 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="sumneko_lua", requested_version=""
[ERROR Fri Apr 29 07:42:42 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 07:42:43 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="sumneko_lua", success=true
[INFO  Fri Apr 29 07:43:08 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="gopls", requested_version=""
[INFO  Fri Apr 29 07:43:09 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="gopls", success=true
[INFO  Fri Apr 29 07:43:24 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="gopls", requested_version=""
[ERROR Fri Apr 29 07:43:24 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 07:43:25 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="gopls", success=true
[ERROR Fri Apr 29 07:48:24 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 07:58:31 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="cargo", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 07:58:31 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 07:58:31 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 07:58:31 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 08:04:15 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="sumneko_lua", requested_version=""
[ERROR Fri Apr 29 08:04:15 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 08:04:15 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 08:04:17 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="sumneko_lua", success=true
[INFO  Fri Apr 29 08:04:29 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="sumneko_lua", requested_version=""
[ERROR Fri Apr 29 08:04:29 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 08:04:29 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 08:04:30 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="sumneko_lua", success=true
[INFO  Fri Apr 29 08:04:35 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="sumneko_lua", requested_version=""
[ERROR Fri Apr 29 08:04:35 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 08:04:36 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="sumneko_lua", success=true
[INFO  Fri Apr 29 08:05:19 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="pyright", requested_version=""
[INFO  Fri Apr 29 08:05:20 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="pyright", success=true
[INFO  Fri Apr 29 08:07:06 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="sumneko_lua", requested_version=""
[INFO  Fri Apr 29 08:07:06 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="yamlls", requested_version=""
[ERROR Fri Apr 29 08:07:06 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 08:07:07 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="yamlls", success=true
[INFO  Fri Apr 29 08:07:07 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="sumneko_lua", success=true
[INFO  Fri Apr 29 08:09:53 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="pyright", requested_version=""
[INFO  Fri Apr 29 08:09:55 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="pyright", success=true
[INFO  Fri Apr 29 08:10:51 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="sumneko_lua", requested_version=""
[INFO  Fri Apr 29 08:10:51 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="yamlls", requested_version=""
[ERROR Fri Apr 29 08:10:51 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 08:10:52 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="yamlls", success=true
[INFO  Fri Apr 29 08:10:53 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="sumneko_lua", success=true
[ERROR Fri Apr 29 08:12:33 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="cargo", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 08:12:33 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 08:12:33 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 08:12:33 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 08:15:29 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="pyright", requested_version=""
[ERROR Fri Apr 29 08:15:29 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 08:15:30 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="pyright", success=true
[INFO  Fri Apr 29 11:04:17 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="pyright", requested_version=""
[ERROR Fri Apr 29 11:04:17 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="gh", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 11:04:19 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="pyright", success=true
[INFO  Fri Apr 29 11:06:12 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="pyright", requested_version=""
[INFO  Fri Apr 29 11:06:13 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="pyright", success=true
[ERROR Fri Apr 29 11:07:04 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="cargo", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 11:07:04 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 11:07:04 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 11:07:04 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 11:10:11 2022] ...cker/start/nvim-lsp-installer/lua/nvim-lsp-installer.lua:258: Uninstalling all servers.
[INFO  Fri Apr 29 11:10:11 2022] ...cker/start/nvim-lsp-installer/lua/nvim-lsp-installer.lua:266: Successfully uninstalled all servers.
[INFO  Fri Apr 29 11:10:16 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="pyright", requested_version=""
[INFO  Fri Apr 29 11:10:16 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="sumneko_lua", requested_version=""
[INFO  Fri Apr 29 11:10:17 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="pyright", success=true
[INFO  Fri Apr 29 11:10:18 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="sumneko_lua", success=true
[INFO  Fri Apr 29 11:14:05 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="yamlls", requested_version=""
[INFO  Fri Apr 29 11:14:07 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="yamlls", success=true
[INFO  Fri Apr 29 11:17:52 2022] ...cker/start/nvim-lsp-installer/lua/nvim-lsp-installer.lua:258: Uninstalling all servers.
[INFO  Fri Apr 29 11:17:52 2022] ...cker/start/nvim-lsp-installer/lua/nvim-lsp-installer.lua:266: Successfully uninstalled all servers.
[INFO  Fri Apr 29 11:17:57 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="pyright", requested_version=""
[INFO  Fri Apr 29 11:17:58 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="pyright", success=true
[INFO  Fri Apr 29 11:18:05 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="sumneko_lua", requested_version=""
[INFO  Fri Apr 29 11:18:06 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="sumneko_lua", success=true
[INFO  Fri Apr 29 11:25:03 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="bashls", requested_version=""
[INFO  Fri Apr 29 11:25:08 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="bashls", success=true
[INFO  Fri Apr 29 15:01:33 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="gopls", requested_version=""
[INFO  Fri Apr 29 15:01:34 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="gopls", success=true
[INFO  Fri Apr 29 15:02:08 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="yamlls", requested_version=""
[ERROR Fri Apr 29 15:25:33 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="cargo", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 15:25:33 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="composer", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 15:25:33 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="php", err="ENOENT: no such file or directory"
[ERROR Fri Apr 29 15:25:33 2022] ...rt/nvim-lsp-installer/lua/nvim-lsp-installer/process.lua:153: Failed to spawn process. cmd="julia", err="ENOENT: no such file or directory"
[INFO  Fri Apr 29 15:25:58 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="pyright", requested_version=""
[INFO  Fri Apr 29 15:25:59 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="pyright", success=true
[INFO  Fri Apr 29 15:26:03 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="sumneko_lua", requested_version=""
[INFO  Fri Apr 29 15:26:03 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="gopls", requested_version=""
[INFO  Fri Apr 29 15:26:04 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="sumneko_lua", success=true
[INFO  Fri Apr 29 15:26:04 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="sumneko_lua", requested_version=""
[INFO  Fri Apr 29 15:26:05 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="gopls", success=true
[INFO  Fri Apr 29 15:26:05 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="sumneko_lua", success=true
[INFO  Fri Apr 29 15:26:51 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="yamlls", requested_version=""
[INFO  Fri Apr 29 15:26:54 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="yamlls", success=true
[INFO  Fri Apr 29 15:29:51 2022] ...cker/start/nvim-lsp-installer/lua/nvim-lsp-installer.lua:258: Uninstalling all servers.
[INFO  Fri Apr 29 15:29:51 2022] ...cker/start/nvim-lsp-installer/lua/nvim-lsp-installer.lua:266: Successfully uninstalled all servers.
[INFO  Fri Apr 29 15:30:10 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:682: Starting install server_name="gopls", requested_version=""
[INFO  Fri Apr 29 15:30:11 2022] ...-installer/lua/nvim-lsp-installer/ui/status-win/init.lua:701: Installation completed server_name="gopls", success=true

### Healthcheck

```shell
nvim-lsp-installer: require("nvim-lsp-installer.health").check()
========================================================================
## nvim-lsp-installer report
  - OK: neovim version >= 0.6.0
  - WARNING: **cargo**: not available
  - WARNING: **Composer**: not available
  - WARNING: **PHP**: not available
  - WARNING: **julia**: not available
  - OK: **bash**: `GNU bash, version 3.2.57(1)-release (arm64-apple-darwin21)`
  - OK: **tar**: `bsdtar 3.5.1 - libarchive 3.5.1 zlib/1.2.11 liblzma/5.0.5 bz2lib/1.0.8 `
  - OK: **gzip**: `Apple gzip 353.100.22`
  - OK: **curl**: `curl 7.79.1 (x86_64-apple-darwin21.0) libcurl/7.79.1 (SecureTransport) LibreSSL/3.3.5 zlib/1.2.11 nghttp2/1.45.1`
  - OK: **wget**: `GNU Wget 1.21.3 built on darwin21.3.0.`
  - OK: **Ruby**: `ruby 2.6.8p205 (2021-07-07 revision 67951) [universal.arm64e-darwin21]`
  - OK: **Go**: `go version go1.18.1 darwin/arm64`
  - OK: **sh**: `Ok`
  - OK: **node**: `v18.0.0`
  - WARNING: **java**: not available
  - WARNING: **javac**: not available
  - OK: **python3**: `Python 3.10.3`
  - OK: **RubyGem**: `3.0.3.1`
  - OK: **npm**: `8.6.0`
  - OK: **pip3**: `pip 22.0.4 from /Users/sean/.pyenv/versions/3.10.3/lib/python3.10/site-packages/pip (python 3.10)`


### Screenshots

See problem description.
williamboman commented 2 years ago

Hey, try either:

1) move the require("nvim-lsp-installer").setup {} call into the config = function () of lspconfig (recommended) 2) add after = "nvim-lsp-installer" to use { "neovim/nvim-lspconfig", after = "nvim-lsp-installer", config = function () ... end }

sdemura commented 2 years ago

1 did the trick. Thank you!