pudb.vim icon indicating copy to clipboard operation
pudb.vim copied to clipboard

no command found in neovim

Open smilesun opened this issue 5 years ago • 9 comments

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?

smilesun avatar Mar 07 '19 11:03 smilesun

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.

aalexei avatar Mar 12 '19 22:03 aalexei

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?

keshawnhsieh avatar Jul 29 '19 06:07 keshawnhsieh

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

SkyLeach avatar Oct 06 '19 13:10 SkyLeach

I am having the same issue

aseutin avatar Oct 25 '19 00:10 aseutin

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).

gegnew avatar Nov 19 '19 14:11 gegnew

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

zacho112 avatar May 08 '20 10:05 zacho112

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.

zacho112 avatar May 08 '20 11:05 zacho112

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).

Jasha10 avatar Mar 30 '21 23:03 Jasha10

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.

wtheisen avatar Nov 15 '21 15:11 wtheisen