I keep trying to install Pip using get-pip.py and only get the wheel file in the scripts folder. Try running "pip" in the command prompt and it just comes out with an error. Running windows 8 incase you need. edit error is 'pip' is not recognized as an internal or external command...
            Asked
            
        
        
            Active
            
        
            Viewed 1.7k times
        
    0
            
            
        - 
                    Possible duplicate of [How do I install pip on Windows?](http://stackoverflow.com/questions/4750806/how-do-i-install-pip-on-windows) – smac89 Jul 28 '16 at 03:01
- 
                    2What is the error? – Paul Rooney Jul 28 '16 at 03:01
- 
                    3The latest Python installers come with pip... – OneCricketeer Jul 28 '16 at 03:02
- 
                    error is that its not recognized – Asuto Seven Jul 28 '16 at 03:06
- 
                    Yes cricket_007. @Asuto Seven - Please download 2.7.12 version. – Dinesh Pundkar Jul 28 '16 at 03:07
- 
                    Just install latest python installer from python.org, and enable environment variables option during installation. it should be built-in. – YOU Jul 28 '16 at 03:10
- 
                    @AsutoSeven what is the python version, you are using? – be_good_do_good Jul 28 '16 at 03:41
- 
                    @be_good_do_good 2.7.12 – Asuto Seven Jul 28 '16 at 12:11
3 Answers
2
            
            
        Use:
python -m pip (command) (option)
Do not use () 
 
    
    
        Mohammad Usman
        
- 37,952
- 20
- 92
- 95
 
    
    
        Adam McAllister
        
- 41
- 4
1
            
            
        If you are using latest version of Python.
In computer properties, Go to Advanced System Settings -> Advanced tab -> Environmental Variables
In System variables section, there is variable called PATH. Append c:\Python27\Scripts (Note append, not replace)
Then open a new command prompt, try "pip"
 
    
    
        be_good_do_good
        
- 4,311
- 3
- 28
- 42
- 
                    
- 
                    @AsutoSeven Double click on the PATH variable,go to the end of the Variable Value, then add ";C:\Python27\Scripts"(without double quotes) to it. click OK. – be_good_do_good Jul 28 '16 at 13:14
0
            
            
        Try navigating to ~/Python[version]/Scripts in cmd, then use pip[version] [command] [module] (ie. pip3 install themodulename or pip2 install themodulename)
 
    
    
        heyyou482
        
- 101
- 1
- 5
