I am using python 3.6. I am trying to install a new library using (on windows) but I get the error : Fatal error in launcher: Unable to create process using '"'. I am in the directory where pip library is present. Please help!
            Asked
            
        
        
            Active
            
        
            Viewed 32 times
        
    -1
            
            
        - 
                    change to your home directory and try again – Paul H Jan 30 '18 at 08:13
- 
                    Possible duplicate of [Pip - Fatal error in launcher: Unable to create process using '"'](https://stackoverflow.com/questions/37220055/pip-fatal-error-in-launcher-unable-to-create-process-using) – phd Jan 30 '18 at 16:44
1 Answers
-1
            
            
        Try this:-
import pip
pip.main(["install","your module"])
 
    
    
        Narendra
        
- 1,511
- 1
- 10
- 20
- 
                    Using `pip.main()` is deprecated and will be remved in the future. Also I'm sure it doesn't help the OP. – phd Jan 30 '18 at 16:45
