Je ne peux pas installer " pip " pour python

Je suis passant par le livre Apprendre le langage Python à La Dure et j'ai besoin d'installer pip.(ex46,ex47)
Donc j'ai sauvé get-pip.py sur mon ordinateur et en powershell j'ai fait :

PS C:\Users\Toto\pip> python Get-pip.py
Downloading/unpacking pip
Installing collected packages: pip
Successfully installed pip
Cleaning up...

mais quand j'ai essayer: PS C:\Users\Toto\pip> pip

j'obtiens cette erreur:
pip : The term 'pip' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the s
pelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ pip
+ ~~~
+ CategoryInfo : ObjectNotFound: (pip:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

C:\Python27\Scripts\ est déjà sur mon chemin.

Je ne peux pas comprendre cela. Si quelqu'un pourrait s'il vous plaît aider moi.

note: je suis sur windows 8 et c'est avec python 2.7

Vous avez probablement besoin d'ajouter singulièrement pour les variables d'environnement PATH
cela peut aider docs.python-guide.org/en/latest/starting/install/win
Dans le IDLE, le Python shell interactif, qui vous permet de tester vos déclarations, écrire cette commande: import pip.
Êtes-vous en mesure d'appeler pip à partir de la ligne de commande maintenant?
Si vous ne voulez pas salir avec le CHEMIN d'accès et en supposant que l'appel de python fonctionne, vous pouvez utiliser "python -m pip ..." au lieu de "pip ..."

OriginalL'auteur Lagastic | 2014-12-18