我正在尝试使用 Pathogen 安装 YCM,但是在 Github 上的 README 文件中没有使用 Pathogen 执行此操作的教程。有什么方法可以使用 Pathogen 安装 YCM,我该怎么做?
问问题
2002 次
2 回答
2
要使用 Pathogen 安装插件,您只需将其文件夹放入您的%USERPROFILE%/vimfiles/bundle/
文件夹中。
一种方法是:
git clone https://github.com/Valloric/YouCompleteMe.git %USERPROFILE%/vimfiles/bundle/YouCompleteMe
然后按照安装说明的其余部分,就好像它是 Vundle 一样(查看repo以获取更多信息):
cd %USERPROFILE%/vimfiles/bundle/YouCompleteMe
python install.py --all
于 2016-08-17T23:27:05.593 回答
0
在使用 pyenv 的 macOS 上,我不得不……</p>
cd "$HOME/.vim/bundle"
git clone https://github.com/Valloric/YouCompleteMe.git
cd YouCompleteMe
git submodule update --init --recursive # I had to do this several times… YMMV
PYTHON_CONFIGURE_OPTS="--enable-framework" pyenv install 3.6.12
pyenv local 3.6.12
python3.6 install.py --all
于 2020-12-08T02:38:30.353 回答