简体   繁体   中英

'pip' is not recognized on python 2.7.12

when I try to install beautiful soup with pip, this always happens

C:\Python27>pip install beautifulsoup4
'pip' is not recognized as an internal or external command,
operable program or batch file.

I have tried to uninstall python 2.7.12 but when I try, it says that there is a problem with the windows installer package

EDIT:pip is installed under C:\\Python27\\Scripts

尝试:

C:\Python\Scripts\pip install

pip is in the Scripts subdirectory. Try this instead:

C:\Python27>cd Scripts
C:\Python27\Scripts>pip install beautifulsoup4

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM