pipとpip 3の違い
728 ワード
Windows cmdに
where pip
と入力すると、pip.exe
のすべてのパスが表示されます.以下に示すように、最初のパスはPython27
であり、実行pip install xxx
はパケットをPython27\Lib\site-packages
ディレクトリの下にインストールする.pip3
も同様であり、pip3 install xxx
は、where pip3
の最初のパスにパッケージをデフォルトでインストールします.>> where pip
C:\Users\linky\AppData\Local\Programs\Python\Python27\Scripts\pip.exe
C:\Users\linky\AppData\Local\Programs\Python\Python36\Scripts\pip.exe
C:\Users\linky\Anaconda3\Scripts\pip.exe
>> where pip3
C:\Users\linky\AppData\Local\Programs\Python\Python36\Scripts\pip.exe