回答編集履歴
1
python2とpython3を分けていない場合を記述
answer
CHANGED
@@ -13,6 +13,6 @@
|
|
13
13
|
let g:python3_host_prog = 'python3へのフルパス'
|
14
14
|
```
|
15
15
|
使用しているpython3のフルパスは
|
16
|
-
windowsだと**コマンドプロンプト上**で`where python3`
|
16
|
+
windowsだと**コマンドプロンプト上**で`where python3`もしくは`where python`
|
17
|
-
Ubuntuなどだと`which python3`
|
17
|
+
Ubuntuなどだと`which python3`もしくは`which python`
|
18
18
|
を利用して表示することができます。
|