vim-python-ide icon indicating copy to clipboard operation
vim-python-ide copied to clipboard

Installation on raspbian

Open segalion opened this issue 5 years ago • 0 comments

I have tryed your great script in a raspbian RPI4 enviroment and I want to make some corrections to make work, that could be great to include...

  1. Need to previously install:

sudo apt install libncurses-dev python-dev python3-dev git ctags

  1. remove prevously vim (if installed)

sudo apt-get remove vim vim-runtime

  1. Install vim from source with 'sudo'. Modify 'make -j $CPUS && sudo make install' in 'install.sh' file

  2. Install rope in python3: pip3 install --user rope ropemode ropevim

  3. Include in .vimrc: " close vim if the only window left open is a NERDTree autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif

Maybe could be great to change/update those pip2 versions to python3 as python2 is now EOL.

Thanks a lot for this.

Probably this could be best python3 IDE specially for ligthCPU envoroments like raspberry pi, so thanks for support this project.

segalion avatar Oct 20 '20 19:10 segalion