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