내가 이해하는 바와 같이 Python 2.7.9에는 Pip가 설치되어 있지만 CMD (Windows)에서 Pip 명령을 실행하려고하면 다음 오류가 발생합니다.
'pip' is not recognized as an internal or external command, operable program or batch file.
입력 python
하면 다음과 같이 올바르게 설치되었음을 알 수 있습니다.
Python 2.7.9 (default, Dec 10 2014, 12:24:55) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
그러나 파이썬 부분이 CMD에서 작동하도록하려면 몇 가지 환경 변수를 추가해야했습니다.
환경 변수에 추가하십시오
PATH
."C:\Python27\"
시스템 변수 정의
PYTHONPATH
:"C:\Python27\"
Python 디렉토리 내에서 Pip 폴더를 찾을 수 없지만 .NET에는 "ensurepip"라는 폴더가 C:\Python27\Lib\
있습니다.
CMD에서 작업을 시작하기 위해 Pip 명령을 얻는 방법을 아는 사람이 있습니까?