We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
is there someone able to help on this one ?
when typing "checkhealth" inside nvim, I get this from the neopyter plugin, do not know how to go on further:
Failed to run healthcheck for neopyter plugin. Exception: lua/neopyter./health.lua:32: attempt to index field 'jupyterlab' (a nil value)
The text was updated successfully, but these errors were encountered:
Do you setup the neopyter? e.g
neopyter
require("neopyter").setup({ ... })
Sorry, something went wrong.
Do you setup the neopyter? e.g require("neopyter").setup({ ... })
hmm not sure where I should put this ?
If you use lazy.nvim, you should install neopyter with
lazy.nvim
{ "SUSTech-data/neopyter", ---@type neopyter.Option opts = { remote_address = "127.0.0.1:9001", auto_attach = true, }, ft = { "python" }, cmd = "Neopyter", }
If you use pckr.nvim, you should add
pckr.nvim
{ "SUSTech-data/neopyter", config = function () ---@type neopyter.Option require("neopyter").setup({ remote_address = "127.0.0.1:9001", auto_attach = true, }) end }
If you manual install plugin, you should call it in your init.lua
init.lua
Neoptyter follows the same install convention as other plugins.
But you can provide more context for me to assist you.
No branches or pull requests
Hello,
is there someone able to help on this one ?
when typing "checkhealth" inside nvim, I get this from the neopyter plugin, do not know how to go on further:
The text was updated successfully, but these errors were encountered: