2

このかなり良いガイドに従おうとしているimhttp ://www.tylerbutler.com/2012/05/28/how-to-install-python-pip-and-virtualenv-on-windows-with-powershell/

しかし、virtualenvをインストールしようとすると、次のエラーが発生します

PS C:\> pip install virtualenv
The term 'pip' is not recognized as the name of a cmdlet, function, script file
, or operable program. Check the spelling of the name, or if a path was include
d, verify that the path is correct and try again.
At line:1 char:4
+ pip <<<<  install virtualenv
    + CategoryInfo          : ObjectNotFound: (pip:String) [], CommandNotFound
    Exception
    + FullyQualifiedErrorId : CommandNotFoundException

私は通常Macユーザーなので、pipの使い方は理解していますが、なぜこれが機能しないのかわかりません。PowerShellではあまり良くありません。

4

1 に答える 1

6

わかりました。記事の作成者にメールを送信しました。彼は、pipを取得するには、c:\ Python27\Scriptsがパス/PS$ env:Pathにある必要があることを指摘しました。

並べ替えると、正常にインストールされます。

于 2012-10-02T21:24:34.577 に答える