SkyLeach / pudb.vim

Integrate the awesome PUDB debugger with NeoVim
MIT License
84 stars 10 forks source link

no command found in neovim #5

Open smilesun opened 5 years ago

smilesun commented 5 years ago

Hi, I installed this plugin by adding the line Plugin 'SkyLeach/pudb.vim' to my .vimrc, where the plugin manager is vundle when I run PluginInstall in vundle, the pudb seems to be installed, but when i restart tmux and neovim, there is no command like PUDBTOGGLE, i did not yet make other configurations, is there something i must do before the command will show?

aalexei commented 5 years ago

I'm getting the same problem with neovim on a mac. After installing the plugin and running :UpdateRemotePlugins vim_pudb.py fails to get registered in ~/.local/share/nvim/rplugin.vim.

keshawnhsieh commented 5 years ago

Hi, I installed this plugin by adding the line Plugin 'SkyLeach/pudb.vim' to my .vimrc, where the plugin manager is vundle when I run PluginInstall in vundle, the pudb seems to be installed, but when i restart tmux and neovim, there is no command like PUDBTOGGLE, i did not yet make other configurations, is there something i must do before the command will show?

Have you solved this problem yet?

SkyLeach commented 5 years ago

This is (probably) due to project structure. I'll take a look.

aseutin commented 4 years ago

I am having the same issue

gegnew commented 4 years ago

I was having this issue, and when I ran :UpdateRemotePlugins, I was getting "not found" errors for jupyter-client and pudb. Solved by installing both with pip, and everything seems to be okay. Curious why, though, since I had pudb already installed (via the Arch repos).

zacho112 commented 4 years ago

Same issue, on MacOS Catalina. Installed pudb with pip, and the plugin via vundle. Anything else needed?

zacho112 commented 4 years ago

Same issue, on MacOS Catalina. Installed pudb with pip, and the plugin via vundle. Anything else needed?

Nevermind, manged to get it to work.

Follow the guidence from :h nvim-python to make sure nvim is setup with python, then use :checkhealth to make sure everything is okay, and it will tell you if you'll need to install pudb (pip install pudb), to run :UpdateRemotePlugins or whatever.

Jasha10 commented 3 years ago

I'm getting the same problem with neovim on a mac. After installing the plugin and running :UpdateRemotePlugins vim_pudb.py fails to get registered in ~/.local/share/nvim/rplugin.vim.

I am having the same issue (using vim-plug to install).

wtheisen commented 2 years ago

What worked for me was running python3 -m pip install --user --upgrade pynvim per the nvim docs. Running :checkhealth told me that PUDB wasn't registered as python3 wasn't available. This fixed that problem and I now can run the commands.