私が行ったグーグル検索では、私が使用する必要のあるコマンドは_brew install vim --with-python3
_であり、エラーなしで成功しますが、_vim --version
_はPython 3が使用不可であることを報告します。
_k162:~ asday$ brew install vim --with-python3
==> Using the sandbox
==> Downloading https://github.com/vim/vim/archive/v7.4.2210.tar.gz
Already downloaded: /Users/asday/Library/Caches/Homebrew/vim-7.4.2210.tar.gz
==> ./configure --prefix=/usr/local --mandir=/usr/local/Cellar/vim/7.4.2210/share/man --enable-multibyte --with-tlib=ncurses --enable-cscope --with-compiledby=Homebrew --enable-p
==> make
==> make install prefix=/usr/local/Cellar/vim/7.4.2210 STRIP=true
???? /usr/local/Cellar/vim/7.4.2210: 1,732 files, 28.5M, built in 52 seconds
k162:~ asday$ vim --version
VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Oct 27 2015 16:22:14)
Compiled by [email protected]
Normal version without GUI. Features included (+) or not (-):
-arabic +autocmd -balloon_eval -browse +builtin_terms +byte_offset +cindent
-clientserver -clipboard +cmdline_compl +cmdline_hist +cmdline_info +comments
-conceal +cryptv +cscope +cursorbind +cursorshape +dialog_con +diff +digraphs
-dnd -ebcdic -emacs_tags +eval +ex_extra +extra_search -farsi +file_in_path
+find_in_path +float +folding -footer +fork() -gettext -hangul_input +iconv
+insert_expand +jumplist -keymap -langmap +libcall +linebreak +lispindent
+listcmds +localmap -lua +menu +mksession +modify_fname +mouse -mouseshape
-mouse_dec -mouse_gpm -mouse_jsbterm -mouse_netterm -mouse_sysmouse
+mouse_xterm +multi_byte +multi_lang -mzscheme +netbeans_intg -osfiletype
+path_extra -Perl +persistent_undo +postscript +printer -profile +python/dyn
-python3 +quickfix +reltime -rightleft +Ruby/dyn +scrollbind +signs
+smartindent -sniff +startuptime +statusline -Sun_workshop +syntax +tag_binary
+tag_old_static -tag_any_white -tcl +terminfo +termresponse +textobjects +title
-toolbar +user_commands +vertsplit +virtualedit +visual +visualextra +viminfo
+vreplace +wildignore +wildmenu +windows +writebackup -X11 -xfontset -xim -xsmp
-xterm_clipboard -xterm_save
system vimrc file: "$VIM/vimrc"
user vimrc file: "$HOME/.vimrc"
user exrc file: "$HOME/.exrc"
fall-back for $VIM: "/usr/share/vim"
Compilation: gcc -c -I. -D_FORTIFY_SOURCE=0 -Iproto -DHAVE_CONFIG_H -Arch i386 -Arch x86_64 -g -Os -pipe
Linking: gcc -Arch i386 -Arch x86_64 -o vim -lncurses
_
そして、vim内で:py3 print("")
を実行すると、_E319: Sorry, the command is not available in this version
_が返されます。
私が間違っているのは何ですか? vimを自分でコンパイルする必要がありますか?
以下は、2017年5月26日現在、-python3
Vimのバージョンは、homebrewを介して既にインストールされています:
brew remove vim
brew cleanup
brew install vim --with-python3
今日も同じ問題が発生しました。どんなに
brew install vim --with-python3
または
brew install vim --without-python --with-python3
だから私は~/Library/Logs/Homebrew/vim
でHomebrewのログをチェックし、01.configure
で見つけた
checking Python is 3.0 or better... too old
これは、configureがpython3のパスを見つけられないためです
/usr/local/Cellar/python3/3.X.X/bin
(パスは異なる場合があります)をPATH
環境に追加して再実行すると、vimは最終的に+python3
でコンパイルされます
Homebrew(2018-04-09)のバージョン 1.6. 以降、デフォルトpython versionは3です。したがって、この前にvimのバージョンがインストールされている場合python2でコンパイルされた変更、python3でvimを取得するために今実行する必要があるのは単純です:
$ vim --version | grep python
$ brew uninstall --force vim
$ brew cleanup
$ brew install vim
$ vim --version | grep python
すでにそれを動作させるようになっています。 vim式は、python --versionがバージョン3の場合にのみ、python3サポートでvimをインストールします。brewinstall python install pythonバージョン3(別のバイナリで実行するため:python3)
差出人: https://www.reddit.com/r/vim/comments/8iymh8/vim_in_osx_with_python3_support/dyx1b94/
これが私のステップです:
alias python=python3
brew install vim
+python3
の中に vim --version
出力unalias python
Python3をサポートするVimをインストールするもう1つの方法は、port
from The MacPorts Project を使用することです。
VIMで利用可能なバリアントの数とそれらの競合を確認するには:
port variant vim
Python3サポートでvimをインストールするには:
Sudo port install vim +python37
アンインストールするには、次のようにします。
Sudo port uninstall vim
このバリエーションが私の問題であることが判明しました:
パスに特定のもの(homebrewなど)を追加する前に、Python VirtualEnvを.bash_profile/.zshrcで自動的にアクティブ化していました。
解決策は、source venv/bin/activate
行を.bash_profileの最後に入力し、ターミナルを起動してvimをインストールするときにdeactivate
を実行します。その時点で、私は上記の答えに従って実行しました:
brew remove vim; brew cleanup; brew install vim
そしてすべてが良かった。
これは、システムに既にインストールされているvim
が、通常/usr/loca/vim
にあるためです。
$ which vim
ls /usr/local/Cellar/vim/7.4.2210
を試して、利用可能なフォルダを確認してください。私のシステムでは、そのディレクトリにbin/vim
があるので、OSの.zshrc
または同様のrcファイルを更新し、次のように更新します
alias 'vim'=/usr/local/Cellar/vim/7.4.2210/bin/vim
新しいターミナルを開くと、
which vim
更新パスが表示されます。そのため、Python3を内部で使用できます。
vim
がまだAppleがインストールしたバージョンに解決している可能性があります。参照: https://stackoverflow.com/questions/33313708/apples-vim-always-used-instead-of-homebrew
2017年10月現在、これは機能します。
以前にhomebrewでvimをインストールしている場合は、最初にそれをアンインストールします
brew remove vim
brew cleanup
その後
brew install vim --without-python --with-python3