pip not working on windows python 2.7.9

前端 未结 8 1499
一向
一向 2021-01-05 18:45

I\'ve installed Python 2.7.9, which comes with already bundled with pip. I\'ve check that it\'s there in the modules list. But when I run pip install I get

相关标签:
8条回答
  • 2021-01-05 19:17

    just put python before pip

    python pip install <package_name>
    
    0 讨论(0)
  • 2021-01-05 19:22

    Append C:\Python27\Scripts;in PATH variable

    where C:\Python27\Scripts; is the path where pip script is located.

    0 讨论(0)
提交回复
热议问题